1. 程式人生 > >【已解決】linux修改資料夾的所屬使用者組

【已解決】linux修改資料夾的所屬使用者組

[xxx@xxxx www]$ ll -a
total 36
drwxr-xr-x.  9 root root 4096 Aug 26 23:23 .
drwxr-xr-x. 24 root root 4096 Aug 12 05:01 ..
drwxr-xr-x.  2 root root 4096 Aug 15  2014 cgi-bin
drwxr-xr-x.  3 root root 4096 Aug 10 02:28 error
drwxrwxr-x.  4 xxxx xxxx 4096 Aug 21 04:30 htmlhehe
drwxrwxr-x.  6 root root 4096 Aug 12 00:03 html
drwxr-xr-x.  3 root root 4096 Aug 12 23:44 icons
drwxr-xr-x. 14 root root 4096 Aug 10 03:03 manual
drwxrwxrwx.  2 root root 4096 Aug 12 23:58 test


在使用這個命令的時候,列出使用者的許可權和所在的組。

我想把這個html的root使用者許可權以及所在組改成我自己的使用者名稱xxxx,於是使用sudo許可權進行更改:

sudo chown xxxx:xxxx html/ 

如果是批量修改這個資料夾下面的所有子檔案,加上-R即可:

sudo chown <strong>-R</strong> xxxx:xxxx html/