Reputation: 31
I have a Linux server with KVM virtualitation, and a new Windows Server with Hyper-V virtualization.
I would like migrate my KVM images to the Windows Hyper-V...
How can is converting kvm image to hyper-v vhd?
Upvotes: 0
Views: 10376
Reputation: 11
There are inaccuracy in the question and in the answer. VHD is a image format for VirtualPC. There is VHDX format for Hyper-V. For migration to Hyper-V a right command will be for example:
qemu-img convert -f qcow2 something.img -O vhdx something.vhdx
Upvotes: 1