setfacl setfacl [option] ENTRY:NAME:PERMS file-name Option -m : 파일에 ACL을 추가하거나 추가되어 있는 ACL 변경 시 사용 [root@centOS8 ~]# setfacl -m u:user01:rwx /dirA [root@centOS8 ~]# setfacl -m m::r-- /dirA [root@centOS8 ~]# setfacl -m d:u:user01:rwx acl -x : 특정 권한을 제거 [root@centOS8 ~]# setfacl -x u:user01 /dirA -k : 기본 ACL 제거 [root@centOS8 ~]# setfacl -k /dirA -b : 모든 ACL 제거 [root@centOS8 ~]# setfacl -b /dirA -R..