cbagger01
Group: Members
Posts: 4264
Joined: Oct. 2003 |
|
Posted: Jan. 16 2006,04:48 |
|
Say you have a second partition (already formatted) at hda2 (Linux or FAT/FAT32. NTFS will NOT work).
You can image the partition by choosing "Upgrade to GNU utilities" first.
Make sure that /dev/hda1 is NOT MOUNTED.
Then open a terminal winodow and type:
Code Sample | mount /mnt/hda2 sudo su dd if=/dev/hda1 bs=4096 | gzip -2c | split -b 650m - /mnt/hda2/image.
|
And you will get a compressed image of partition hda1. The image will be split up into 650MB files (good for CD burning). If you want DVD burning, try a value that is less than 2GB in size but is easily divisible by the total DVD disk size, maybe something like "-b 1500m"? You would then place 3 files on each DVD disk.
Restoration is the reverse of backup:
Code Sample | mount /mnt/hda2 sudo su cat /mnt/hda2/image.* | gzip -d | dd /dev/hda1 bs=4096
|
|