Virtualharddisk

From Piszczynski
Revision as of 13:36, 19 December 2023 by Aleks (talk | contribs) (Created page with "== Convert from VHD to VMDK == use qemu-img tool to convert disk formats, documentation here: [https://www.qemu.org/docs/master/tools/qemu-img.html qemu-img doc] can download the tool here: [https://cloudbase.it/qemu-img-windows/ download] Example of simple use to convert from vhd to vmdk:<syntaxhighlight lang="powershell"> .\qemu-img.exe convert C:\diskstoconvert\sourcedisk.vhd -O vmdk C:\diskstoconvert\converteddisk.vmdk </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Convert from VHD to VMDK

use qemu-img tool to convert disk formats, documentation here: qemu-img doc

can download the tool here: download

Example of simple use to convert from vhd to vmdk:

.\qemu-img.exe convert C:\diskstoconvert\sourcedisk.vhd -O vmdk C:\diskstoconvert\converteddisk.vmdk