About Lesson
ACLs provide finer-grained permissions than traditional file permissions.
-
Setting ACL:
-
Command:
setfacl -m u:[username]:[permissions] [filename]
-
Example:
setfacl -m u:john:rw file.txt
-
-
Viewing ACL:
-
Command:
getfacl [filename]
-
Example:
getfacl file.txt
-
-
Removing ACL:
-
Command:
setfacl -x u:[username] [filename]
-
Example:
setfacl -x u:john file.txt
-