Learning Xen: Converting Existing Non-Xen Hypervisor Images for Use in Xen

If you are testing Xen in your environment, you probably already have images native to other hypervisors which you might like to test.  So a common question is, “How can I convert these images so I can use them in Xen?”
Conversion requires two steps: first, convert the foreign hypervisor image to a Xen-native format, and, second, adjust the contents of the image to accept the new virtual machine environment.
The second step depends largely on the guest operating system involved.  Windows, for example, can require a number of steps to backup the registry, introduce the new virtual hardware, and install the new device drivers.  The first step, on the other hand, is often straightforward.

Xen supports a number of storage options involving a few disk formats.  Xen can easily use disk images in RAW, QCOW2, or VHD format, but one of the best combinations is a RAW image in an LVM volume.  Using the LVM (Linux Volume Manager) brings a number of benefits, including a simple backup strategy.  But using a RAW image in an LVM volume adds a performance boost above that of an image stored in a local file.
Other hypervisors use a number of formats, so it is likely that you will need to convert your image from a different hypervisor into a RAW format.  Thankfully, the qemu-image program can handle conversions from many different formats.
Take, for example, this simple bash script called cvt2xen.sh:

#!/bin/bash
imgin="$1"
imgxen="$2"
#
if test -z "$imgin" -o -z "$imgxen";
 then echo "usage: $0 <inputfile> <xenoutputfile>";
 exit;
 fi
#
getfmt="`qemu-img info $imgin | egrep format`"
if test -z "$getfmt";
 then echo "Cannot process this file"
 exit;
 fi
#
isfmt="`echo $getfmt | colrm 1 13`"
if test "$isfmt" == "raw";
 then echo "File is raw. No conversion needed";
 exit;
 fi
echo "File $imgin is of type $isfmt"
#
qemu-img convert "$imgin" -O raw "$imgxen"
#
echo "Output:"
ls -lh "$imgxen"

Don’t forget to “chmod u+x cvt2xen.sh” the file so it can be executed.  Then, just convert your old image file to Xen format by typing:

./cvt2xen.sh OLDIMAGEFILE NEWIMAGEFILE.img

For example:

$ ./cvt2xen.sh precise-server-cloudimg-amd64-disk1.qcow2 precise-server-amd64.img
File precise-server-cloudimg-amd64-disk1.qcow2 is of type qcow2
Output:
-rw-r--r-- 1 root root 2.0G Aug 21 22:04 precise-server-amd64.img

The script employs the “qemu-img convert” subcommand to translate the old image file to a Xen RAW image.
Loading the result into an LVM volume is straightforward.  I won’t give a full dissertation on using LVM here, but once you have LVM set up, you just need to create the volume and load the image into the volume.
You can create the volume with a command like:

$ lvcreate -L2G -n precise xengroup

In this case, we are creating a 2 GB  volume group called “precise” in a group called “xengroup”.  Then we populate the volume by transferring the image data into it using the command:

$ dd if=precise-server-amd64.img of=/dev/xengroup/precise

You will need to create a configuration file for the new image. A simple file might look like:

name = "Ubuntu-precise"
memory = 512
vcpus = 1
disk = [ '/dev/xengroup/precise,raw,xvda,rw' ]
serial = 'pty'
vnc = 1

A detailed description of all the options in the configuration file can be found here.  The options for the “disk” line particularly can be found here.
With the image itself transferred, now comes the all-important second step: getting the new image to adapt to the new hypervisor environment.  Remember that the virtual environment generated by any one hypervisor will not be identical to that of another hypervisor.  So a VM which was born under, say, VMware will suddenly see similar but different devices emulated under Xen.  Some guest operating systems will adjust themselves to the change with little or no intervention; others may require some help.
The job of moving an image from one hypervisor to another is analogous to moving a hard drive from one physical machine to another.  The operating system on the disk will have to compensate for differences in the CPU, memory, network interface, etc.  Some operating systems handle this fairly easily, while others do not.
For example, a modern Linux-based image under hardware virtualization should be able to adapt itself to the new virtual hardware environment without incident.  A Windows-based image, however, may require considerable manual intervention to make the adjustment.   Look into sysprep /generalize to ease the transition.  Details of moving a Windows VM can be found in posts like this one.
So, give this a try using a Linux image first.  If you don’t have one handy, try one of these Debian images provided by Aurélien Jarno.  Then try it with Windows (but have a good cheat sheet handy, or at least have an experienced Windows sysadmin on speed dial).
Let us know how it goes!
Was this post valuable to you?  Why or why not?  We’d like to run more of this type of post in the future, and we need to know if it meets your needs.  Give us some feedback below.

Read more

Xen Project Announces Performance and Security Advancements with Release of 4.19
Aug 05 2024

New release marks significant enhancements in performance, security, and versatility across various architectures.  SAN FRANCISCO – July 31st, 2024 – The Xen Project, an open source project under the Linux Foundation, is proud to announce the release of Xen Project 4.19. This release marks a significant milestone in enhancing performance, security,

Upcoming Closure of Xen Project Colo Facility
Jul 10 2024

Dear Xen Community, We regret to inform you that the Xen Project is currently experiencing unexpected changes due to the sudden shutdown of our colocated (colo) data center facility by Synoptek. This incident is beyond our control and will impact the continuity of OSSTest (the gating Xen Project CI loop)

Xen Summit Talks Now Live on YouTube!
Jun 18 2024

Hello Xen Community! We have some thrilling news to share with you all. The highly anticipated talks from this year’s Xen Summit are now live on YouTube! Whether you attended the summit in person or couldn’t make it this time, you can now access all the insightful presentations

Get ready for Xen Summit 2024!
May 24 2024

With less than 2 weeks to go, are you ready? The Xen Project is gearing up for a summit full of discussions, collaboration and innovation. If you haven’t already done so – get involved by submitting a design session topic. Don’t worry if you can’t attend in person,