KVM disk image converstions: Difference between revisions

From RARForge
Jump to navigation Jump to search
(Created page with "== Qcow2 disk image to a Raw Image (and LV) <source> qemu-img convert -p vm.qcow.img -O raw vm.raw.img dd if=vm.raw.img of=/dev/lg_mygroup/lv_myvol bs=1M </source> [[Category...")
 
No edit summary
 
Line 1: Line 1:
== Qcow2 disk image to a Raw Image (and LV)
== Qcow2 disk image to a Raw Image (and LV)==
<source>
<source>
qemu-img convert -p vm.qcow.img -O raw vm.raw.img
qemu-img convert -p vm.qcow.img -O raw vm.raw.img

Latest revision as of 19:52, 29 May 2013

Qcow2 disk image to a Raw Image (and LV)[edit]

<source> qemu-img convert -p vm.qcow.img -O raw vm.raw.img dd if=vm.raw.img of=/dev/lg_mygroup/lv_myvol bs=1M </source>