PolloChang

我是一隻雞

PolloChang 工作筆記

歡迎來到 PolloChang 工作筆記

Recent Posts

linux 登入使用 google auth 二階段驗證

2025-01-11 linux

環境 OS: Debian 12 安裝及部屬 安裝 安裝 libpam-google-authenticator sudo apt -y install libpam-google-authenticator 設定 ssh 登入 /etc/pam.d/sshd auth required ... Read More

Disable Gnome Auto Upate

2025-01-09 linux gnome

禁止 Gnome 自動背景更新 設定文件: /etc/PackageKit/PackageKit.conf 設定文禁止更新 #PreventNetworkAccess=false PreventNetworkAccess=true sudo systemctl daemon-reload sudo ... Read More

tomcat log 格式探究

2025-01-02 tomcat

這幾天工作上有針對日誌設定做討論,但是單純對tomcat 日誌設定似乎缺少了實做探究,於是在下班之餘稍微探究了一下。今天先對日誌格式做研究。 在官網對於 log 工具預設是由 java 原生日誌工具處理 java.util.logging 原始設定 以下是 tomcat9 對 log ... Read More

Oracle Delete Database

2024-12-30 Oracle

Oracle 刪除資料庫 先查詢資料庫名稱 select name, open_mode from v$database; SQL> select name, open_mode from v$database; NAME OPEN_MODE --------- ... Read More

將腳本丟到背景執行

2024-12-30 linux

# 將腳本丟到背景執行,會輸出背景執行 PID Number nohup /usr/local/bin/example-shell.sh & # 監控結果 tail -f nohup.out # 監控背景程序還有執行 watch -n 1 "ps -p 120448 -o ... Read More

Grails Export Dependencies

2024-12-24 grails gradle

Grails 匯出專案中相依套件的 jar 環境 grails version: grails5 設定方式 在 build.gradle 新增設定 configurations { runtime.extendsFrom(compileClasspath, runtimeOnly) } task ... Read More

systemctl

2024-12-22 linux

變更 systemctl 默認編輯器 sudo update-alternatives --config editor 執行結果 root@example:~# sudo update-alternatives --config editor There are 3 choices for the ... Read More

Install Postgresql on Debian12

2024-12-22 postgresql

環境 OS: Debian 12 Database version: postgresql 14 安裝 sudo apt -y install curl ca-certificates sudo install -d /usr/share/postgresql-common/pgdg sudo ... Read More

nmcli 指令操作

2024-12-18 linux NetworkManager

處理前動作 檢查文件中已經有配置: /etc/network/interfaces 如果有需要註解,範例如下: # The primary network interface # allow-hotplug enp1s0 # iface enp1s0 inet dhcp 新增網卡配置 sudo ... Read More

關閉centos7防火牆firewalld改用傳統的iptables

2024-11-21 linux firewalld iptables

關閉 centos7 防火牆 firewalld 改用傳統的 iptables 這樣做的原因 因為firewalld 政策是對外嚴謹對內寬鬆,所以當需求是需要對內嚴謹時無法滿足需求 處理方式 預設開機不啟動 且 立即停止 systemctl disable --now firewalld ... Read More

CNS11643 轉 UTF8 經驗

2024-03-21 工作雜記 CNS11643 Java

unicode: 萬國碼,設計上一共有17個平面。在第0的平面中,可以直接用一個 UTF-8 表示。 CNS11643: 中文標準交換碼,是中華民國國家標準11643號,簡稱CNS 11643,舊名通用漢字標準交換碼,是中華民國政府為中文資訊處理製定的字元編碼方案,與許多學術圖書館係統採用 ... Read More

db-postgresql-note

2024-03-15 工作雜記 postgresql

安裝時設定項目 安裝前檢查項目 作業系統版本 資料庫空間需要獨立空間 資料庫備份需要獨立空間 稽核確認: 資料庫連線稽核 稽核確認: 資料庫DDL異動紀錄 定期備份排程 資料庫備份 定期備份排程 user: postgres 0 1 * * * pg_dump -Fc -c dbName > ... Read More

docker-note

2024-03-15 工作雜記 docker

檢查內部容器使用狀況 docker stats CONTAINER ID NAME CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O PIDS 59bfcba7ba71 testwebjobmail-testwebJobMail-1 0.89% ... Read More

關閉IPv6

2024-02-28 工作雜記 Linux

設定文件: /etc/sysctl.conf net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 讓設定生效 sudo sysctl ... Read More

輸入法相關

2024-02-28 工作雜記 Linux

設定中文輸入法 在windows時我習慣是使用微軟新注音輸入法,轉到Linux 的替代方案是新酷音。以下是我安裝新酷音的步驟。 至於輸入法框架,因為是使用 Gnome 桌面系統,在試過 fcitx 與 ibus 之後,最後是 ibus 比較能再大多數軟體上正常運作。fcitx 在有些時候會出現閃退或 ... Read More

筆記型電腦安裝 Debian 調整

2024-02-28 工作雜記 Debian

筆記型電腦 調整 筆記型電腦插入滑鼠裝置自動關閉滑鼠板 Gnome gsettings set org.gnome.desktop.peripherals.touchpad send-events disabled-on-external-mouse 我發現在 Debian 10 ... Read More

我的Linux生活日記 Debian 使用心得-2022.04

2024-02-28 我的Linux生活日記 linux

我的Linux生活日記 Debian 使用心得-2022.04 tags: 我的linux日常生活 Debian 當初會接觸Debian 這個作業系統是因為我想找一個穩定的發行板,也確實Debian 相比Ubuntu 穩定很多,很少在更新作業系統後出現問題。 踏入Debian 初期,常常發現有驅動軟 ... Read More

我的Linux生活日記 31.ssh登入信息-ssh login banner

2024-02-28 我的Linux生活日記 linux

我的Linux生活日記 31.ssh登入信息-ssh login banner 範本 /etc/profile.d/ssh-login-info.sh #!/bin/sh # # @Time : 2023-09-14 # @Author : PolloChang # @Desc : ssh ... Read More

我的Linux生活日記 30.學習資源

2024-02-28 我的Linux生活日記 linux

我的Linux生活日記 30.學習資源 今天是最後一天了,連續發文30天真的不容易,過程中需要排除萬難騰出寶貴的時間寫。最後一天就來寫我自己的學習資源吧! 打造學習環境 學習Linux,首先必須想辦法把環境建立起來,讀在多的理論知識知道再多的指令,沒有一個環境去實做永遠都是資訊或是紙上的文字紀錄而 ... Read More

我的Linux生活日記 29.如何從小使用Linux

2024-02-28 我的Linux生活日記 linux

我的Linux生活日記 29.如何從小使用Linux 今天這個主題來討論電腦教育吧。小朋友依開始接觸電腦作業系統有百分之六十以上的機率會是windows ,學校預先安裝、教學的也是。至少從我以前小學三年級開始,教室後面的安裝的作業系統就是windows98,每當下課時就會等待電腦開機,和三四位同學共 ... Read More