From IT Mission Linux Tips, Hacks, Tutorials, Howtos - Itmission.org

Main: ACL

ACL notes...



# vi /etc/fstab

LABEL=/		/		ext3		defaults,acl		1  1

:wq (save and exit)

# mount -o remount,rw /

# mkdir test

# cd test

# cat >acltest.txt

Ctrl + D

Login with other user and open the file.

# getfacl /root/test/acltest.txt  (Command will show the permission on the file.)

# setfacl -m u:user1:r-x /root/test/acltest.txt (Will set the permission on the file.)

# getfacl /root/test/acltest.txt

Login with user1 and try to open the file.

# setfacl -x u:user1 /root/test/acltest.txt  (command will remove the acl permission from the file).


Retrieved from http://www.itmission.org/Main/ACL
Page last modified on December 14, 2012, at 04:55 PM