LINUX里文件系統的770之類的數字是什么意思?
這個是表示文件的權限,表示任何人對這個文件都有讀、寫、運行三項權限。 關于權限的表述具體如下: 語法為:chmod abc file 其中a,b,c各為一個數字,分別表示User、Group、及Other的權限。 r=4,w=2,x=1 (r:讀,w:寫,x:運行) 若要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的權限