*nix操作
於 2023年6月16日 (五) 00:59 由 Tankianting(討論 | 貢獻) 所做的修訂
BSD 加入到 Grub2
以系統管理員身份編輯
/etc/grub.d/40_custom
,加入:
menuentry "BSD" { set root='(hd1,2)' kfreebsd /boot/loader }
(hdx,y) => x,y 從0起算,指第x顆硬碟的第y分割區
Nginx 強制 SSL
server { listen 80; server_name signup.mysite.com; return 301 https://$server_name$request_uri; }
使用 certbot 含自動設定 nginx
apt-get install python3-certbot-nginx certbot --nginx
rsync 用ssh同步到遠端,排除目錄
rsync [ORIG_FOLDER] user@[HOST.ADDRESS]::/mnt/destination --exclude=~/.UnsyncFolder
在 HP Laptop 15 fd0072 安裝 Linux Mint
於某目錄內找重複檔案
用遞迴方式於某目錄找重複檔案,匯出到 foo.txt:
fdupes -r [/path/to/dir] > foo.txt