linux中 chmod +x和chmod u+x以及chown

韓師學子--胖佳發表於2019-03-01

          linux中 chmod +x和chmod u+x以及chown


轉載: https://blog.csdn.net/pan_xi_yi/article/details/82155529
 

u 代表使用者. 
g 代表使用者組. 
o 代表其他. 
a 代表所有.

這意味著chmod u+x somefile 只授予這個檔案的所屬者執行的許可權 
而 chmod +x somefile 和 chmod a+x somefile 是一樣的 
Just doing +x will apply it to all flags: [u]ser, [g]roup, [o]thers.

chown可以設定檔案或目錄的所有者和所屬組,

chown [引數] 所有者:所屬組 檔案和目錄名稱

chmod 和chown都有一個共同的特點,針對目錄進行操作時需要加上大寫的引數-R來表時遞迴操作,即對目錄內所有的檔案進行整體操作。

相關文章