我意外地使用setfacl添加了扩展权限,所以如何删除它?
我已成功设置扩展权限
setfacl -R u:user2:wrx /tmp
我试着按照手册页的指示移除
setfacl -R -x u:user2:wrx /tmp
但删除此权限失败
最佳答案
以下是方法:
setfacl -bn foobar
来源:
https://unix.stackexchange.com/questions/339765/how-to-remove-acl-from-a-directory-and-back-to-usual-access-control
关于linux - 如何从目录中删除ACL并返回到通常的访问控制?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51091712/