linux的檔案呼叫許可權分為** : 檔案擁有者、群組、其他。利用 chmod 可以控制檔案如何被他人所呼叫。
使用方式
chmod
[-cfvr]
[--help]
[--version]
mode
file...
引數說明
mode : 許可權設定許可權,格式如下 :
[ugoa...][[+-=][rwxx]...][,...]
其中,
例項:
將檔案 file1.txt 設為所有人皆可讀取 :
chmod ugo+r file.txt
chmod a+r file.txt
將檔案 file1.txt 與 file2.txt 設為該檔案擁有者,與其所屬同乙個群體者可寫入,但其他以外的人則不可寫入 :
chmod ug+w,o-w file1.txt,file2.txt
將 1.py 設定為只有該檔案擁有者可以執行 :
chmod u+x
1.py
將目前目錄下的所有檔案與子目錄皆設為任何人可讀取 :
chmod -r a+r *
此外chmod也可以用數字來表示許可權如 :
chmod
777 file 和chmod abc效果一樣
其中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=5。
chmod a=rwx file
chmod 777
file
效果相同
chmod ug=rwx,o=x file
chmod 771
file
效果相同
若用chmod
4755 filename可使此程式具有root的許可權
Linux命令chmod學習筆記
linux下chmod命令用得很多,但是有時會忘記此命令的正確用法和一些注意事項。最近用得比較多,總結一下。chmod命令用途 用於改變linux系統的檔案的訪問許可權。通常用它來控制檔案的訪問許可權,使檔案可寫或者使檔案只允許某些使用者進入。linux系統檔案許可權介紹 在linux系統中,一切都...
Linux命令 chmod命令
chmod命令 改變檔案或目錄的訪問許可權 許可權代號 r 檔案被讀取 4 w 檔案被寫入 2 x 檔案被執行 1 許可權範圍 u 檔案所有者 g 檔案所有者所在組 o 其他 a 全部 建立檔案 touch demo1.txt 顯示建立的檔案 ls l demo1.txt 執行結果 rw rw r ...
chmod命令詳解
在linux作業系統中,chmod命令用於更改檔案的屬性,很多人也許知道 chmod 666 php.ini 是將php.ini檔案的屬性改為rw rw rw 但不明白具體原因,下面將其進行詳細介紹。在linux的終端中輸入 ls l php.ini 能夠檢視php.ini檔案的詳細資訊,假設其詳細...