Hi-
So I'm trying to figure out a way to make a gentoo boot disc that can restore split ntfsclone images (ie. ntfsclone -s /dev/hda1 -o - | gzip | split -b 650m - backup.hda1.gz) spanned over several (n < 20) discs (CDs or DVDs).
How can I restore the split image to a drive WITHOUT concatenating all of the separate images onto the hard drive prior to restoring them?
IE. Have ntfsclone start writing the part 1 of the image to disk, and upon reaching the end of that, pause, create a prompt to insert the next disk, start reading disc 2's contents and writing them to disk, and so forth through however many discs there are.
Also, having the same number of CD/DVD drives connected as number of image splits probably isn't an option (sure, one is fine, but what about where there are 10 discs?).
Any ideas would be greatly appreciated!
-Ryan
Edit: So I found a similar question posited here.
It was suggested to try using a FIFO special file as the intermediary that ntfsclone reads from. Any bash scripting gurus out there have any more insight?
Upon further thinking, I can broaden the search to include (or be replaced by) dd.

