User Tools

Site Tools


box:qemu

This is an old revision of the document!


QEMU management

convert disk/image

qemu-img convert: raw, qcow2, qed, vdi, vmdk, vhd

Image formatArgument to qemu-img
QCOW2 (KVM, Xen)qcow2
QED (KVM)qed
rawraw
VDI (VirtualBox)vdi
VHD (Hyper-V)vpc
VMDK (VMware)vmdk

This example will convert a raw image file named image.img to a qcow2 image file.

qemu-img convert -f raw -O qcow2 image.img image.qcow2

Run the following command to convert a vmdk image file to a raw image file.

qemu-img convert -f vmdk -O raw image.vmdk image.img

Run the following command to convert a vmdk image file to a qcow2 image file.

qemu-img convert -f vmdk -O qcow2 image.vmdk image.qcow2
box/qemu.1724793082.txt.gz · Last modified: 2024/08/27 23:11 by manu