unix:virtualization:virtlib:importxen
Differences
This shows you the differences between two versions of the page.
| — | unix:virtualization:virtlib:importxen [2022/05/20 04:28] (current) – created - external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Import Xen virtuals to KVM/Xen ====== | ||
| + | **Warning**: | ||
| + | |||
| + | This is a work in progress, as I've not been able to find anything on the 'net about it. Everything I've seen assumes your Xen virtuals are being managed by libvirt already, so it is a matter of using some built in utilities. | ||
| + | |||
| + | The way I propose to do it is to manually generate a libvirt configuration file, modified to use values from the original Xen machine. We'll use the virt-install command with the --import and --print-xml options. | ||
| + | |||
| + | Lets try to convert the following Xen configuration file | ||
| + | |||
| + | <code python> | ||
| + | builder=' | ||
| + | memory=4096 | ||
| + | vcpus=4 | ||
| + | name=' | ||
| + | |||
| + | # change the MAC address to be unique. | ||
| + | # change the vifname so it shows up well on ifconfig output | ||
| + | vif= [ | ||
| + | ' | ||
| + | ] | ||
| + | disk=[ | ||
| + | # this points to the " | ||
| + | ' | ||
| + | # this points to the installation media | ||
| + | # note, you may (should) remove the disk image after the install is done | ||
| + | ' | ||
| + | ] | ||
| + | |||
| + | # NOTE: you must change this to C after the initial installation or it will boot right back into the installer | ||
| + | boot=' | ||
| + | vnc=1 # allow us to use vnc to connect during install (and after) | ||
| + | vncdisplay=4 | ||
| + | usbdevice=' | ||
| + | localtime=0 | ||
| + | serial=' | ||
| + | xen_platform_pci=1 # allows us to use the pv drivers for Linux hvm | ||
| + | uuid=' | ||
| + | </ | ||
| + | |||
| + | To do this, will run virt-install with the --print-xml flag, which will simply show the configuration. In this case, I'm writing it to a file so it can be edited, then used to test, then define the virtual. | ||
| + | |||
| + | <code bash> | ||
| + | | ||
| + | | ||
| + | --hvm \ | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | > test.xml | ||
| + | </ | ||
| + | |||
| + | The items marked **CHANGEME** in the above command are all populated from a Xen configuration file. **NOTE**: it is very important to place the boot drive first in the list, before any other drives or cdrom' | ||
| + | |||
| + | <code xml> | ||
| + | <code bash> | ||
| + | | ||
| + | | ||
| + | --hvm \ | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | > test.xml | ||
| + | </ | ||
| + | |||
| + | |||
| + | Once you have this done, edit the resulting file with any changes you may need. I change the CPU as per [[unix: | ||
| + | |||
| + | Now, shut down the virtual on its Xen hypervisor and test it with the following command: <code bash> | ||
| + | |||
| + | If all works well, shut down the virtual, then make the definition permanent with <code bash> | ||
| + | |||
| + | You are done. | ||
unix/virtualization/virtlib/importxen.1652067020.txt.gz · Last modified: (external edit)
