美文网首页Linux系统管理
Setfacl - operation not supporte

Setfacl - operation not supporte

作者: 咖啡大象不含咖啡 | 来源:发表于2017-12-26 23:11 被阅读184次

重新修改/etc/fstab文件,加入acl选项

/dev/vg/bak             /data0               ext4    defaults,acl    0 0

然后:

mount -o remount /data0

重新挂载,再执行上面的命令,成功!

setfacl用法:

#对文件
setfacl -m user: lubenwei:rw- /data0/test.log
#对目录
setfacl  -m user: lubenwei:rw- /data0/
#对用户组
setfacl -m group: lubenwei:rw- /data0/test.log

回收a c l权限

setbacl -x u:username  filename

加参数-R实现递归。

-d使用默认的acl策略

参考http://man.linuxde.net/setfacl

相关文章

网友评论

    本文标题:Setfacl - operation not supporte

    本文链接:https://www.haomeiwen.com/subject/seqygxtx.html