Quantcast

How to transfer a Linux image from VirtualBox to Xen

There have been times recently when I wanted to pull a VirtualBox Linux instance I had into Xen. I kept thinking it had to be fairly easy but I kept putting off trying it until recently when I ran into something I wanted to install from a CD image into an Amazon EC2 AMI. It turns out the main hurdle in transferring an image is lack of documentation.

I'm using VirtualBox 2.1.0 so some of the following commands may not work with older versions. I learned the hard way that they have changed a number of tools for VirtualBox and some of the older tools where probably easier to use and documented better. I installed the package I was using from an ISO image and then started trying to extract the part that I needed from the VDI that was created.

My first attempt at extracting the partition required me to convert my dynamic VDI into a static image. To dump a dynamic VDI into a static image you run this command:

VBoxManage convertdd -static abox.vdi /tmp/abox.img

I thought I could find the image by hand in the VDI after I had it in a raw format. There were a number of hints that I found that made me think I could just pull the partition out without much of a problem: VirtualBox and forensics tools and a forum post. However I found that just looking around wasn't easy enough to find where the partition started so I moved on to trying to find something else that could scan the disk and find it.

I rand into TestDisk and gave it a try. When it would scan the disk it found the /boot partition but for some reason it wasn't finding the root partition so I moved on.

I then took a look at the format for VDI disks to see if it was possible to pull it out given the header information with a simple program but that looked like it would be a lot of work so it was back to square one.

Along the way I happened to came across information about an undocumented command to export raw disk image. This turned out to be the break I needed because running the following command will result in only the disk image itself without any VirtualBox residue:

VBoxManage internalcommands converttoraw myosimage.vdi /tmp/myosimage.img

At this point things became a lot easier. There were multiple partitions on the resulting disk image but I only needed the / partition. To extract the root partition I first listed the partitions with this command:

fdisk -lu myosimage.img

This output the following for my image:

You must set cylinders.
You can do this from the extra functions menu.

Disk myosimage.img: 0 MB, 0 bytes
255 heads, 63 sectors/track, 0 cylinders, total 0 sectors
Units = sectors of 1 * 512 = 512 bytes
Disk identifier: 0×0003f47f

      Device Boot                Start             End         Blocks    Id  System
myosimage.img1   *              63       208844        104391   83  Linux
myosimage.img2          208845      3662819     1726987+  83  Linux
myosimage.img3         3662820     4192964       265072+  82  Linux swap / Solaris

To figure out where the root partition starts I just multiplied the start sector by the number of bytes per sector: 208845 * 512 = 106928640

I then did a quick test to make sure I had the correct partition:

mount -o loop,offset=106928640 myosimage.img /mnt/

This looked good so I extracted the partition from the disk and did a filesystem check on it:

dd if=myosimage.img of=mypartimage.img bs=512 skip=208845 count=3453974
e2fsck mypartimage.img

Extracting the partition you want is about 80% of the battle. Getting it to run under Xen after extraction is just a matter of fixing anything that was left out because the install was done under a "real" machine.

I add a nosegneg ld.so.conf directive and move /lib/tls directory out of the way first:

echo "hwcap 0 nosegneg" >  /mnt/etc/ld.so.conf.d/nosegneg.conf
mv /mnt/lib/tls /mnt/lib/tls.disabled

Next the base device entries needed to be created:

for i in console null zero ; do /sbin/MAKEDEV -d /mnt/dev -x $i ; done

I then removed the disk label from the partition using e2label:

e2label mypartimage.img ""

Because I was sending this image to EC2 I recreated the fstab with the following entries that are specific to the way EC2 allocates disks to a node:

/dev/sda1  /         ext3    defaults        1 1
/dev/sda2  /mnt      ext3    defaults        1 2
/dev/sda3  swap      swap    defaults        0 0

The finally, again because I was going to EC2 I added a few scripts and created rc.local to let me in when the instance was started.

This seems to be a fairly easy process now that I have done it from start to finish once.

This entry was posted in linux, system administration and tagged , . Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.

7 Comments

  1. oo
    Posted October 14, 2009 at 8:08 am | Permalink

    Have you already tried to convert a Windows Server 2008 VDI into an AMI and fire it up on EC2?

  2. Posted October 16, 2009 at 8:03 am | Permalink

    I don't think you can transfer a windows server image over so I haven't tried. I'm not sure you can select anything but linux kernels to boot from.

  3. dave
    Posted November 20, 2009 at 9:19 pm | Permalink

    What OS are you using here? My fdisk (OS X Intel) is different and I'm a little stumped.

  4. Posted November 22, 2009 at 10:47 am | Permalink

    I was using Linux. I can't easily test on OS X so I'm not sure what you would need to do there to get the image converted.

  5. dave
    Posted November 23, 2009 at 12:20 am | Permalink

    Could you expand on: "I added a few scripts and created rc.local to let me in when the instance was started" I have successfully created a custom AMI and registered it, but once launched, I am unable to SSH into it. Yes, I have checked that port 22 is authorized. Thanks.

  6. Nehemiah
    Posted January 12, 2010 at 12:34 pm | Permalink

    what if one of those images are in an LVM? I used virtual box to setup a ubuntu server install (9.10) and I couldn't mount the lvm partition. can I use dd to extract the data anyway?

  7. Nehemiah
    Posted January 12, 2010 at 1:35 pm | Permalink

    found a solution. for LVM volume groups on the virtural box, here is a link to instructions for getting volume groups recovered from a dd.

One Trackback

  1. [...] I would wrap up what I have since I take the path of installing Asterisk on VirtualBox first then converting that disk image to an AMI as I outlined a few weeks ago when I got serious about testing out the Asterisk on EC2 [...]

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>