I need to convert a VHD file (Hyper-V VM) to the Linux raw format. Is there a tool which can do this which is graphical?

link|improve this question

31% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Why must it be graphical?

qemu-img convert -f vhd -O raw something.vhd something.raw
link|improve this answer
feedback

This article may help: Converting VHD to raw disk images, or even VMDK.

link|improve this answer
feedback

The correct format is:

qemu-img convert -f vpc -O raw lamp-3-x86.vhd lamp.raw

From the manpages of qemu-img:

qemu-img convert -f vpc -O raw lamp-3-x86.vhd lamp.raw
vpc – VirtualPC compatible image format (VHD).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.