Backups to CD-R?
Lumpish Scholar asks: "Backups are important, so we should tell our friends and family to buy a bunch of CD-Rs and...what? The operating system most of them are stuck with comes with backup software, but 'Windows Backup Does Not Back Up to CD-R, CD-RW, or DVD-R Devices (this behavior is by design). I've looked in the obvious places, but nothing comes across as better than adequate. There's got to be something that can do full or incremental backups (which in part means keeping track of what's already been backed up), that can back up files bigger than a single CD-R, and that's relatively fast and easy. What have you used to solve this problem, for yourself or others, for Windows or for better operating systems?"
Although I've never used it before, Nero BackItUp appears to do what you're looking for. I've bought Ahead's software many times before, and their quality is fairly good. There's a trial version, too.
Norton Ghost is what I use for multi-disk CD-R backups.
I've used http://www.handybackup.com/ for several clients and have been very pleased with the results thus far. It allows you to backup to cd-r, network, or ftp and allows the backup to be scheduled in a wide variety of ways.
You need another HDD or a fileserver (with network).
;) ).
//fileserver/backup /mnt/test
/dev/hdc /mnt/test (if have another hdd).
/mnt/test/20041010
/mnt/test/20041010/machinename-hda-lzo-
/mnt/test/20041010/machinename-hda-lzo-* | lzop -d > /dev/hda
Assuming you want to backup first ata hdd on target system.
Boot Knoppix on system to be backed up-
Use:
knoppix 2 noswap
or
knoppix noswap
(latter if you have enough ram + cpu and you still want to browse the web etc whilst backing up
Then mount the drive/share you want to put the backups to.
e.g. mount -t smbfs -o username=blah
or mount
mkdir
dd if=/dev/hda bs=131072 | lzop -c | split -b 650m -
This creates files that are 650MB in size. You can burn these to CD-Rs. I prefer to leave a bit of unused space at the CD-R's edge (some seem to peel off there).
Note: that there are reports that dd in linux in some cases doesn't copy the last byte.
Also you may have to manually turn on DMA access on the HDD using hdparm, for speed.
To restore you do a similar thing - boot knoppix.
then mount the restore drive/fileserver (readonly if paranoid).
Then:
cat
I'm not 100% sure of the command-line parameters. But that's the general principle. I have successfully backed up and restored a number of images this way.
I use lzop because it is faster than gzip - with lzop I can get an average of 30MB/sec with an Athlon 2000XP - not far from max HDD transfer rate, for not much worse compression ratio. gzip is 2 to 3 times slower. Unfortunately lzop seems to be giving me an error in Knoppix 3.6 when I try to decompress. I'm mainly using Knoppix 3.3 though.
Don't forget: CD-Rs can be flaky backup media. Assuming a 40GB HDD compresses to 15-20GB, you'll need about 25 CD-Rs. If any of these don't work you can't restore successfully. So you may need to double the number for redundancy. That is a lot of trouble.
I actually suggest buying a few spare big HDDs and backup to them.
Per GB they're not much more expensive than CD-Rs.
100-200GB drives are about twice the price per GB compared to CD-Rs, and probably less flaky, problematic and troublesome for long term storage (plus take up less space than 150-300 CD-Rs). Just don't drop them and keep them in a safe dry + cool place (packed with dehumidifiers), e.g. data-grade fireproof safe. Buy multiple different brands of HDDs if you're paranoid.