Skip to content

Tag Archives: ext3

Bookmarks for September 24, 2009

25-Sep-09

Links for September 24, 2009: Red Hat Magazine | Tips and tricks: Why is my system unable to reboot after converting my ext3 partition to a diskdump partition. How can I fix this ? – "This problem occurs and leaves the system in an unbootable state. This is because yaboot tries to to boot from a [...]

Access control lists on Linux

15-Jan-09

To view ACLs on a file: > getfacl file.txt To modify the ACL on a file: > setfacl -m user:rwx file.txt To recursively change an ACL: > setfacl -R -m user:rwx . To modify the default ACL for a directory: > setfacl -d -m user:rwx. See the getfacl and setfacl man pages for more information.