分类: LINUX
2006-11-23 00:03:47
定义 ACL_USER,ACL_GROUP_OBJ,ACL_GROUP 三类规则的最大权限。
2)使用命令getfacl 和 setfacl
用setfacl设置文件夹appdir中的所有文件和子目录的acl配置,且设置新建文件和目录的acl配置:
shell> setfacl -d -R -m u:testu1:rwx,u:testu2:rwx,g:testg1:r appdir
用getfacl获取文件夹或文件的acl配置信息:
shell> getfacl appdir
3)acl配置信息的备份与还原
shell> getfacl -R filename.ext > filename.acl.bak
shell> setfacl --restore filename.acl.bak
4)清除所有的acl配置信息
shell> setfacl -R -b appdir
shell> setfacl -x u:user filename.exe