Freebsd

Freebsd setfacl

  • December 8, 2017

我想要一個目錄,預設遮罩 — 給其他人

在 Linux 上

setfacl -d -m  o:--- coldir/

工作正常

在 Freebsd 11.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 解決?

找到解決方案,語法有點不同

sudo setfacl -d -m u::rwx,g::rwx,o::,mask::rwx coldir/

所以創建的新目錄是 770,非常適合協作目錄。

引用自:https://unix.stackexchange.com/questions/409841