Evocati Asked: 2018-04-18 08:02:27 +0800 CST2018-04-18 08:02:27 +0800 CST 2018-04-18 08:02:27 +0800 CST 从特定目录的 ACL 中删除用户 772 CentOS 5.10 版。 getfacl --omit-header Shared/ user::rws user:foo:rw group::rw mask:rw 我想user:foo:rw从此条目中删除。 setfacl -m user:foo:0只是删除权限。 getfacl --omit-header Shared/ user::rws user:foo:--- group::rw mask:rw 这可能吗? centos setfacl 1 个回答 Voted Best Answer Nasir Riley 2018-04-18T09:50:39+08:002018-04-18T09:50:39+08:00 你需要setfacl -x user:foo Shared/ -m只是删除权限而-x删除用户。
你需要
setfacl -x user:foo Shared/
-m
只是删除权限而-x
删除用户。