我一直在用nfs4_setfacl测试,结果我在一些目录上有成百上千的条目。它现在已经到了我甚至不能查看列表的地步,并且它出错了:
[root@server max_data]# nfs4_getfacl /path/to/data/support/MAX/max_data/1999/
Failed getxattr operation: Numerical result out of range是否可以批量删除此目录中的所有all?我所能找到的唯一一件事是你必须能够指定你想要删除的条目--但我甚至不能查看它们,我也不能这么做。
发布于 2015-04-01 01:17:15
单独使用-s选项会使它只包含您输入的单个条目:
[root@server files]# nfs4_getfacl test_several_acl2
Failed getxattr operation: Numerical result out of range
[root@server max_data]# nfs4_setfacl -s A::bob123:rwx 1999
[root@server max_data]# nfs4_getfacl 1999
A::bob123@DOMAIN:rwxhttps://stackoverflow.com/questions/29372582
复制相似问题