> Hi all,
> I want to make a backup of my harddisk and don't know how to split it into
> multiple volumes.
> I tried the following:
> dd if=/dev/hda | gzip | tar -cMf /mo # mo is an magneto optical disk
> The problem is tar doesn't accept input from stdin, cause tar works file
> orientated.
>
> I want to make a binary copy of a harddisk split into multiple volumes,
how
> can I do this?
>
> Cu
> Patrick
What about this:
1st volume: dd if=/dev/hda of=/mo bs=1024 count=650000
2nd volume: dd if=/dev/hda of=/mo bs=1024 count=650000 skip=650000
3rd volume: dd if=/dev/hda of=/mo bs=1024 count=650000 skip=1300000
etc. (assuming 650 MB volumes)
OK, I know it's primitive, without compression, but at least it should work.
Joachim