On Thu, 2009-11-12 at 09:23 +0000, Mr. Teo En Ming (Zhang Enming) wrote: > Hi All, > > I have several Xen virtual machines within logical volumes using LVM2. > I did not use disk images for performance reasons. > > Conventionally, if I want to clone my virtual machines, I have to dd > the LV to an image file. But this consumes a lot of time and harddisk > space. > > So, instead of doing that, I want to use losetup and kpartx with my > logical volumes, which contain operating systems of virtual machines. > > I can backup the filesystems of a virtual machine in this way: > > # losetup /dev/loop1 /dev/virtualmachines/windows7-x64 What's the point of adding a loopback device on top of the LV? Running kpartx on the LV itself will work just fine and this just adds an unnecessary layer of overhead and complexity unless I am missing something. > dd if=/dev/hda of=mbr.hda bs=512 count=1 > > Because /dev/hda resides in a logical volume. The logical volume is a > virtual harddisk for my virtual machine. Assuming that the LV given above is a whole-disk image containing a DOS MBR partition table: dd if=/dev/virtualmachines/windows7-x64 of=/tmp.mbr.img bs=512 count=1 You could also do the same with the loopN device that you set up earlier, although I still don't see the need for that step. > 1) re-create the physical volume (PV) > > 2) re-create the volume group > > 3) assign the PV to the volume group > > 4) restore the LVM metadata, i.e. the configuration files for all the > logical volumes > > 5) restore the MBR of my domU > > 6) restore the filesystems of my domU Should work fine, just be sure to test each step so that you are confident and comfortable with it before you find yourself needing to do this in anger. Regards, Bryn. -- fedora-list mailing list fedora-list@xxxxxxxxxx To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines