關(guān)于acl中g(shù)roup:: 這一行里的權(quán)限的問題
root@liu-CW65S:/home# ls -dl test
-rw-r--r-- 1 root root 0 12月 10 13:43 test
root@liu-CW65S:/home# setfacl -m u:liu:rwx test
root@liu-CW65S:/home# ls -dl test
-rw-rwxr--+ 1 root root 0 12月 10 13:43 test
root@liu-CW65S:/home# getfacl test
# file: test
# owner: root
# group: root
user::rw-
user:liu:rwx
group::r--
mask::rwx
other::r--
為什么setfacl后getfacl出來??? group::r--
ls -l 出來的組權(quán)限是rwx?
setacl也是對用戶為什么組權(quán)限會改動呢?
2016-12-11
當(dāng)文件有acl權(quán)限之后,ls 顯示的中間那一組數(shù)就是表示的acl_mask而不是group了~~~
參考鏈接:http://www.cnblogs.com/ZhangShuo/articles/1836971.html
2016-12-23
牛批,我也正納悶?zāi)?,thx