Convert libvirt Xen configuration to native

configurationconversionlibvirtxen

I've configured some virtual machine under Xen on Debian Squeeze using libvirt with virsh.
Now I want to get rid of the libvirt layer, because I need to configure some specific parameters on the DomUs that are not supported by libvirt.

  1. How can I export my config ?
  2. How can I import the native config file to Xen ?

Thank you for any suggestion !

Best Answer

You would export the xml config and then convert it to XEN Configs:

virsh -c xen:/// domxml-to-native xen-xm rhel5pv.xml

http://libvirt.org/drvxen.html#xmlexport

Related Topic