将libvirt VM导出到vmx(如何生成virt-image)


0

要从vmware转换为libvirt,我会这样做:

virt-convert myvm.vmx -o virt-image IMAGE.XML
virt-image IMAGE.XML

但是如何从libvirt域创建图像描述符以便能够将导出转换回vmware?

Answers:


1

libvirt解决方案:

从域XML配置转换为VMware VMX配置。 virsh domxml-to-native提供了一种将域XML配置转换为VMware VMX配置的方法。   这是一个没有太多文档的新工具,但实际上不需要任何选项。 https://libvirt.org/drvesx.html

这是一个较旧的解决方案:
将域XML格式配置文件转换为libvirt“image”XML配置文件(virt-image)。 http://virtuallyhyper.com/2013/06/migrate-from-libvirt-kvm-to-virtualbox/

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.