Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fix to backup example.

...

Code Block
languagebash
cd /home/
sudo getfacl -R ./www.dailyplanet.com/ > ./acl.bck.www.dailyplanet.com/.acl.bck.txt

Backup the files into tar and gzip or similar program,

...

Code Block
languagebash
cd /home/
sudo setfacl --restore ./acl.bck.www.dailyplanet.com/.acl.bck.txt

References

Good introduction from the Ubuntu docs - https://help.ubuntu.com/community/FilePermissionsACLs

...