关于acl中group:: 这一行里的权限的问题

来源:1-4 Linux中ACL默认权限与递归权限

引体向上3376782

2016-12-10 14:10

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也是对用户为什么组权限会改动呢?


写回答 关注

2回答

  • stolennnxb
    2016-12-11 09:03:07
    已采纳

    当文件有acl权限之后,ls 显示的中间那一组数就是表示的acl_mask而不是group了~~~

    参考链接:http://www.cnblogs.com/ZhangShuo/articles/1836971.html

    引体向上33...

    非常感谢!

    2016-12-29 10:07:47

    共 1 条回复 >

  • 淡淡的如果
    2016-12-23 00:42:19

    牛批,我也正纳闷呢,thx

Linux权限管理之特殊权限

本Linux教程一定会让你对Linux中的权限有更深刻的认识

33276 学习 · 69 问题

查看课程

相似问题