我想要一个dir,一个默认的掩码--对其他人来说
在linux上
setfacl -d -m o:--- coldir/工作很好
在FreeBSD11.0上使用ufs2
setfacl -d -m other:--- coldir/
setfacl: other:---: Invalid argument
setfacl -m m::others:--- coldir/
setfacl: malformed ACL: invalid "tag" field
setfacl: m::others:---: Invalid argument如何解决使用setfacl?
发布于 2017-12-08 23:30:22
找到了解决方案,语法有点不同。
sudo setfacl -d -m u::rwx,g::rwx,o::,mask::rwx coldir/所以新创建的dir是770,非常适合协作dir。
https://unix.stackexchange.com/questions/409841
复制相似问题