I thought I had cloned a linux system using dd. I booted into rescue linux from a Centos 5 dvd.

I mount my external hd.

The command I typed to clone was

dd if=/dev/hda of=/mnt/external/t42.img

After dd had done it's stuff it said 40gb in and out.

After that I zeroed the disk

dd if=/dev/zero of=/dev/hda

Waited for it to do its stuff and then rebooted. Got the desired missing operating system prompt.

Booted up from rescue linux again and reversed the process.

dd if=/mnt/external/t42.img of=/dev/hda

Got 40gb in and out rebooted.

Now I get the grub screen and the kernel choice but once it boots into that I get nothing after the display of the kernel arguments.

Booting into linux rescue says no linux partitions.

If I try and mount the img file and specify ext3 it says no ext3 partitions are there and i cant see inside that img.

What did I do wrong? I've used this method before but with regular partitions i.e. not lvms.

link|improve this question

38% accept rate
LVMs allow you to slice and dice physical discs into any kind of convoluted set up you want. You bypassed all that by dealing with the block-level physical devices. Depending on your LVM setup, you may have extracted only one physical portion of a volume, which may not even have been the portion where the partition data was kept. Most likely your imaged "backup" is basically binary garbage now. – Marc B Jul 27 '11 at 17:22
See serverfault.com/questions/219234/lvm-dd-lvm/219329#219329 particularly the part about LVM "redetection" – emergence Jul 27 '11 at 17:22
Thanks I'll take a look. – Andrew Jul 28 '11 at 1:09
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.