Create a VHD file from a Linux disk
Last updated
Was this helpful?
Last updated
Was this helpful?
Convert in Windows a RAW PhysicalDrive2 to VHD qemu-img.exe convert -f raw -O vpc \.\PhysicalDrive2 CentOS-5-8.vhd Convert in Linux a RAW sdb to QCOW2 qemu-img convert -f raw -O qcow2 /dev/sdb fitsu_MKB3021LT.qcow2 Convert a QCOW2, RAW, VMDK or VDI image to VHDX qemu-img.exe convert source.img -O vhdx -o subformat=dynamic dest.vhdx Convert a QCOW2, RAW, VMDK or VDI image to VHD qemu-img.exe convert source.img -O vpc -o subformat=dynamic dest.vhd