Linux常用命令總結

三占从二發表於2024-07-25

基礎命令

檔案管理命令

cat a.txt # 顯示文字檔案的內容
cat -n a.txt # 顯示文字檔案的內容(並顯示行號)
cat -A a.txt # 顯示文字檔案的內容(含不可見字元)

head/tail -n a.txt # 檢視指定檔案的頭部/尾部內容
less/more -n a.txt # 以分頁方式檢視長檔案

od -x a.txt # 以十六進位制檢視檔案
od -o a.txt # 以八進位制檢視檔案
od -d a.txt # 以十進位制檢視檔案
od -b a.txt # 以二進位制檢視檔案

cp file1 file2 # 複製檔案或者複製整個目錄
scp user@x.x.x.x:/home/file1 file2 # 跨網路複製檔案或者複製整個目錄

touch a.txt # 更新a.txt的最近修改時間到當前時間,不存在則建立一個新檔案


mkdir a/b/c -p # 建立空目錄
rmdir a # 刪除空目錄
rm a.txt # 刪除檔案
rm -r a/ # 刪除目錄











解壓縮命令

許可權管理命令(只有root才能執行)

chmod -R 777 dir/file # 修改檔案或目錄許可權
chmod -R ugo+rwx dir/file # 增加檔案或目錄許可權
chmod -R ugo-rwx dir/file # 刪除檔案或目錄許可權

chown -R toUser dir/file # 修改檔案或目錄的所有者
chown -R toUser:toGroup dir/file # 同時修改檔案或目錄的所有者和所屬使用者組

chgrp -R toGroup dir/file # 修改檔案或目錄的所屬使用者組
chgrp --reference=toFile fromFile # 修改fromFile檔案或目錄的所屬使用者組改為同toFile



使用者管理命令

程序管理命令

系統管理命令

網路命令





相關文章