chmod是檔案/資料夾許可權設定的命令,在linux中常常遇到。本博文下面總結chmod的具體使用方法。
linux/unix的檔案呼叫許可權分為**,即檔案擁有者user、群組group、其它other。u表示該檔案的擁有者。g表示與該檔案的擁有者屬於同乙個群體(group)者,o表示其它以外的人,a表示這三者皆是。
+ 表示新增許可權、- 表示取消許可權、= 表示唯一設定許可權。
r表示可讀取,w表示可寫入,x表示可執行。
舉例說明:
(1)、將檔案file1.txt 設為全部人皆可讀取:
chmod ugo+r file1.txt
(2)、將檔案file1.txt 設為全部人皆可讀取:
chmod a+r file1.txt
(3)、將檔案 file1.txt與file2.txt設為該檔案擁有者。與其所屬同乙個群體者可寫入。但其它以外的人則不可寫入:
chmod ug+w,o-w file1.txt file2.txt
(4)、將ex1.py設定為僅僅有該檔案擁有者能夠執行:
chmod u+x ex1.py
(5)、將眼下資料夾下的全部檔案與子資料夾皆設為不論什麼人可讀取:
chmod -r a+r *
此外chmod也能夠用數字來表示許可權如 chmod 777 file
語法為:chmod abc file
當中a,b,c各為乙個數字,分別表示user、group、及other的許可權。
r=4,w=2。x=1
若要rwx屬性則4+2+1=7;
若要rw-屬性則4+2=6;
若要r-x屬性則4+1=7。
舉例說明:
chmod a=rwx file 和 chmod 777 file 效果同樣
chmod ug=rwx,o=x file 和 chmod 771 file 效果同樣
若用chmod 4755 filename可使此程式具有root的許可權
批量設定資料夾許可權
echo offset dpath d workfiles ifnot exist dpath mdd workfiles echo y cacls d workfiles c g everyone fsetlocal enabledelayedexpansion for l a in 1 1,20...
設定資料夾訪問許可權,非資料夾屬性
using system using system.collections.generic using system.componentmodel using system.data using system.drawing using system.linq using system.text u...
LINUX資料夾以及檔案許可權設定
如果訪問linux檔案或資料夾時,出現permission denied。對於資料夾 執行操作 chmod 755 資料夾名 修改後許可權為 drwxr xr x 對於檔案 執行操作 chmod 644 檔名 修改後許可權為rw r r 貼上英文 to change all the director...