關于acl中group:: 這一行里的權限的問題
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 出來的組權限是rwx?
setacl也是對用戶為什么組權限會改動呢?
2016-12-11
當文件有acl權限之后,ls 顯示的中間那一組數就是表示的acl_mask而不是group了~~~
參考鏈接:http://www.cnblogs.com/ZhangShuo/articles/1836971.html
2016-12-23
牛批,我也正納悶呢,thx