1、设置user1,使之新建文件权限为rw——-
umask 066 ~/.bashrc
2、设置/testdir/f1的权限,使user1用户不可以读写执行,g1组可以读写
setfacl -m u:user1:-,g:g1:rw /testdir/f1
/testdir/dir的权限,使新建文件自动具有acl权限:user1:rw,g1:—
setfacl -m d:u:user1:rw,d:g:g1:0 /testdir/dir
setfacl -m u:user1:rwx /testdir/dir
备份/testdir目录中所有文件的ACL,清除/testdir的所有ACL权限,并利用备份还原
getfacl -R /testdir > acl.txt
setfacl -b /testdir
setfacl –restore=acl.txt
原创文章,作者:msj77539273,如若转载,请注明出处:http://www.178linux.com/30934
评论列表(1条)
文章太过于简单了,一个命令是干什么的,语法,常见选项目,都没有。需要好好修改哦。