将.VHD imag转换为RAW格式


11

我需要将VHD文件(Hyper-V VM)转换为Linux原始格式。有没有可以做到的图形化工具?

Answers:


12

为什么必须图形化?

qemu-img convert -f vpc -O raw something.vhd something.raw

(编辑:固定-f vhd-f vpc。)


1
它不适用于MacOS上的QEMU;正确的方法是使用vpc而不是vhd
Vito Gentile

在Linux上没有vhd格式,请改用vhd
andrej

15

正确的格式是:

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

从的联机帮助页qemu-img

qemu-img convert -f vpc -O raw lamp-3-x86.vhd lamp.raw
vpc – VirtualPC兼容的图像格式(VHD)。


是的,这就是手册页所说的。
d -_- b 2012年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.