View Single Post
  #1  
Old 03-26-2010, 05:27 AM
Stream Recorder
 
Posts: n/a
Default

How to convert VirtualBox VDI image to Qemu-KVM .QCOW image


Convert the VirtualBox image to a raw image format using the following command:
Code:
VBoxManage clonehd "image.vdi" "image.img" --format RAW
Convert convert the raw image to a qcow image using the following command:
Code:
qemu-img convert -f raw image.img -O qcow2 image.qcow
Test your new image image.qcow:
Code:
kvm -m 512 -usbdevice tablet -hda image.qcow
Reply With Quote