「*nix操作」修訂間的差異
跳至導覽
跳至搜尋
Tankianting(討論 | 貢獻) |
Tankianting(討論 | 貢獻) |
||
(未顯示同一使用者於中間所作的 9 次修訂) | |||
行 13: | 行 13: | ||
(hdx,y) => x,y 從0起算,指第x顆硬碟的第y分割區 | (hdx,y) => x,y 從0起算,指第x顆硬碟的第y分割區 | ||
<ref>[https://forums.freebsd.org/threads/booting-freebsd-via-grub.60422/ FreeBSD論壇]</ref> | |||
== dd基本操作 == | |||
<pre>dd if=來源 of=目的 bs=1M</pre> | |||
原封不動複製內容 | |||
來源可以是分割區、iso、img等等 | |||
bs = 批次大小 | |||
==Nginx 強制 SSL == | ==Nginx 強制 SSL == | ||
行 24: | 行 30: | ||
} | } | ||
</pre> | </pre> | ||
<ref>https://serverfault.com/a/424016 by 030 under CC BY-SA 3.0</ref> | |||
===使用 certbot 含自動設定 nginx === | ===使用 certbot 含自動設定 nginx === | ||
行 33: | 行 39: | ||
</pre> | </pre> | ||
https://certbot.eff.org/instructions?ws=nginx&os=ubuntufocal | <ref>https://certbot.eff.org/instructions?ws=nginx&os=ubuntufocal</ref> | ||
==rsync 用ssh同步到遠端,排除目錄== | |||
<pre>rsync [ORIG_FOLDER] user@[HOST.ADDRESS]::/mnt/destination --exclude=~/.UnsyncFolder</pre> | |||
==在 HP Laptop 15 fd0072 安裝 Linux Mint == | |||
* [[在 HP Laptop 15 fd0072TU 安裝 Linux Mint]] | |||
== 於某目錄內找重複檔案 == | |||
用遞迴方式於某目錄找重複檔案,匯出到 foo.txt: | |||
<pre>fdupes -r [/path/to/dir] > foo.txt</pre> | |||
<ref>[https://askubuntu.com/questions/177346/how-to-delete-duplicate-files-with-fdupes How to find (and delete) duplicate files]</ref> | |||
== Mate 如何設定 Shift+Win+S 截任意大小螢幕快速鍵 == | |||
# 進入「主選單>系統>偏好設定>硬體>鍵盤捷徑鍵」 | |||
# 點「加入」,名稱打「拍攝螢幕任意大小截圖」,指令打「mate-screenshot -a」,之後點「套用」。 | |||
# 點左鍵兩下「自訂捷徑鍵」的「拍攝螢幕任意大小截圖」右邊的「已停用」,按「Shift+Win+S」。 | |||
== pandoc 轉文件格式 == | |||
<pre> | |||
pandoc -i 輸入格式 -o 輸出格式 輸入檔案 > 輸出檔案 | |||
</pre> | |||
==如何設定 RAID 0, RAID 1, RAID 5== | |||
參考:[https://www.storagetutorials.com/create-raid-level-0-1-5-linux-unix/ Creating RAID 0, 1 & 5 in Linux/Unix] | |||
==參考== | |||
<references/> | |||
[[category:資訊]] | [[category:資訊]] |
於 2023年7月23日 (日) 18:13 的最新修訂
BSD 加入到 Grub2
以系統管理員身份編輯
/etc/grub.d/40_custom
,加入:
menuentry "BSD" { set root='(hd1,2)' kfreebsd /boot/loader }
(hdx,y) => x,y 從0起算,指第x顆硬碟的第y分割區
dd基本操作
dd if=來源 of=目的 bs=1M
原封不動複製內容
來源可以是分割區、iso、img等等 bs = 批次大小
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
Mate 如何設定 Shift+Win+S 截任意大小螢幕快速鍵
- 進入「主選單>系統>偏好設定>硬體>鍵盤捷徑鍵」
- 點「加入」,名稱打「拍攝螢幕任意大小截圖」,指令打「mate-screenshot -a」,之後點「套用」。
- 點左鍵兩下「自訂捷徑鍵」的「拍攝螢幕任意大小截圖」右邊的「已停用」,按「Shift+Win+S」。
pandoc 轉文件格式
pandoc -i 輸入格式 -o 輸出格式 輸入檔案 > 輸出檔案
如何設定 RAID 0, RAID 1, RAID 5
參考:Creating RAID 0, 1 & 5 in Linux/Unix