1. Xen dom0, hypervisor
  2. GNU/Hurd system
  3. /etc/xen/hurd configuration
  4. Running Hurd with Xen
  5. Building from sources
  6. Miscellaneous
  7. pv-grub

Xen dom0, hypervisor

/!\ Now that GNU Mach handles PAE you can use a PAE-enabled hypervisor.

You can either get binaries at http://youpibouh.thefreecat.org/hurd-xen/ or build them yourself.

GNU/Hurd system

/!\ You need an already installed GNU/Hurd system.

If you have a free partition, you can fdisk to type 0x83, create a filesystem using:

sudo mke2fs -b 4096 -I 128 -o hurd /dev/sda4 

Replace /dev/sda4 with your partition. Install and use crosshurd to setup a GNU/Hurd system on this partition.

/etc/xen/hurd configuration

Here is a sample /etc/xen/hurd configuration

kernel = "/boot/gnumach-xen-pae"
memory = 256
disk = ['phy:sda4,hda,w']
extra = "root=device:hd0"
vif = [ '' ]
ramdisk = "/boot/hurd-modules"

Do not give more than 580MB memory (due to bootstrap limitations, it's not easy to map more).

Suggestions about networking configuration are available.

If you need stable MAC addresses, use a syntax like vif = [ 'mac=00:16:3e:XX:XX:XX, bridge=br0' ].

Running Hurd with Xen

To run Hurd with Xen, use:

xm create -c hurd

and gnumach should get started. Proceed with native-install.

export TERM=mach
./native-install

Building from sources

If you want to generate these images, first get the gnumach-1-branch-Xen-branch branch from gnumach CVS. Then look for "Ugly" in kern/bootstrap.c, how to generate hurd-modules is explained there, and you'll have to fix EXT2FS_SIZE and LD_SO_SIZE by hand. Then use

./configure --enable-platform=xen
make

The current hurd-modules was built from the debian packages hurd 20070606-2 and libc0.3 2.6.1-1. /!\ This means that when using this image, your GNU/Hurd system also needs to be a glibc version 2.6 or later-based one!


Miscellaneous

Internals.

GNU Savannah task #5468, GNU Savannah task #6584.


pv-grub

From Xen 4.0 on you'll be able to run the GNU Hurd directly using pv-grub, without the need to prepare a special bootstrap image (like an initrd).