FreeBSD 설정

FreeBSD 설정

다른 사람들이 사용할 수 있도록 기본 마스크가 ---인 디렉토리를 원합니다.

리눅스에서

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을 사용하여 어떻게 해결합니까?

답변1

해결책을 찾았습니다. 구문이 약간 다릅니다.

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

따라서 새로 생성된 디렉토리는 770이며 이는 협업 디렉토리에 적합합니다.

관련 정보