I'm using rsync for my Mac backups. In Tiger, there is a "-E" option
to preserve extended attributes, even when syncing to a non-Mac
system. Other than that, Linux instructions should apply.
Your simplest solution might look like this:
sudo rsync -avE --delete --exclude ".Trash" /Users /Volumes/
MyUSBDrive/Backup/
Assuming you're running Tiger, you have an external volume named
MyUSBDrive, and you have a folder named Backup on that drive, this
will fully back up all your login accounts except for the Trash Cans.
Subsequent runs will be very fast, only copying changed files. If
you're not running Tiger, replace -avE with -av.
I also add: --exclude "*.noback"
The noback exclusion omits files or folders ending in ".noback". For
example, if I rip a DVD to watch later, I'll name the containing
folder "movies.noback" to keep a few 4-9 gig films out of the backup
set.
On Jul 1, 2005, at 3:37 AM, JayJay wrote: