紀錄工作上的點點滴滴
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
將腳本丟到背景執行
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
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
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
Firewalld Common Questions
2024-11-21 linux firewalld
firewalld 問題整理 AllowZoneDrifting is enabled. 出現 AllowZoneDrifting is enabled. [root@ex-ap test]# systemctl status firewalld ● firewalld.service - ... Read More
Firewalld 學習筆記
2024-11-21 linux firewalld
以下是 firewalld 學習筆記 firewall 網路來源優先 有設定 IP source 優先 有設定 網卡 優先 預設區域 區域簡介 firewalld 的區域(zone)可用來設定網路連線、介面等所處的運作環境,對內使用的區域其防火牆規則會較為寬鬆,反之若是對外的區域其規則會較為嚴謹。 ... Read More
Firewalld Forward Port 防火牆轉發
2024-11-21 linux firewalld
# firewall-cmd --add-forward-port=port=port-number:proto=tcp|udp|sctp|dccp:toport=port-number sudo firewall-cmd --query-masquerade # 查詢有IP 偽裝 sudo ... Read More
Create Local Repository for Yum
2024-11-21 linux yum
建立本地yum倉庫 生一個CentOS7 的環境 local repository 環境 CentOS 7 100GB 存放空間 安裝工具 yum install yum-utils createrepo -y 啟用 EPEL sudo yum install epel-release sudo ... Read More