| iphthime ( @ 2009-01-08 22:55:00 |
rsync on the Mac: Updating your backup
$ rsync -Eav /Users/MyPreciousData/ /Volume/ExternalDrive/BackupOfMyPrecious Data/
-E preserves Mac-specific filesystem stuff
-a preserves stuff like file creation time
-v verbose, tells you what is going on
Do not forget the trailing slash on the first argument "/Users/MyPreciousData/". Otherwise it will create a new "MyPreciousData" directory on the backup drive, instead of syncing to the original backup. This can eat up all your disk space fast.
You can get a lot more sophisticated with rsync (Google rsync backup Mac) but those are the basics.
$ rsync -Eav /Users/MyPreciousData/ /Volume/ExternalDrive/BackupOfMyPrecious
-E preserves Mac-specific filesystem stuff
-a preserves stuff like file creation time
-v verbose, tells you what is going on
Do not forget the trailing slash on the first argument "/Users/MyPreciousData/". Otherwise it will create a new "MyPreciousData" directory on the backup drive, instead of syncing to the original backup. This can eat up all your disk space fast.
You can get a lot more sophisticated with rsync (Google rsync backup Mac) but those are the basics.