3

I've got an external hard drive and I'd like to create a full, bootable backup of my hard drive onto it. I'm running Mac OS X 10.4 (Tiger). I'd like to perform this backup from the command line, using rsync.

A typical command for backing up my entire HD to the external drive would be something like this:

rsync -sometags / /volumes/iMacHomeBackup

However, this isn't a reasonable command to run. Many folders shouldn't be copied onto an external HD, because OS X modifies them according to the present state of the system. As far as I can tell /Network should be left off, using the --exclude tag, as should /Volumes.

Am I right in assuming that these shouldn't be copied? Would the copied files still result in a bootable drive? What other folders should be left off? Consider /dev, any swap files, and temp files.

Would any special rsync tags aide me in accomplishing my goal of creating a "perfect, bootable backup drive?"

2 Answers 2

1

Here is a great resource.

http://www.bombich.com/mactips/image.html

1

rsync should be able to do what you're talking about, but if you want a dead simple way to make a bootable drive, try Carbon Copy Cloner.

3
  • CCC worked some serious magic on when I tried to use it, and I had to exchange the fried drive for a new one. Though it might be unreasonable, I'd like to stay away from CCC, even though it's based in rsync. Commented Jul 16, 2009 at 2:16
  • I just used CCC yesterday to clone a 120 GB drive onto a new 500GB. I swapped the new 500 in, and it booted with absolutely no issues (MacBook Pro) Commented Jul 17, 2009 at 0:54
  • I too have had great success with CCC.
    – donut
    Commented May 17, 2010 at 12:49

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .