My Hardware: Asus P5E mit Core Duo 2 und 2 GB Ram

I installed gutsy from the alternate-CD, then I installed xen using apt-get install ubuntu-xen-server.

My xend-config.sxp looks like this:

Code:
# -*- sh -*-
(xend-relocation-server yes)
(xend-relocation-hosts-allow '^localhost$ ^localhost\\.localdomain$')
(network-script network-bridge)
(vif-script vif-bridge)
(dom0-min-mem 196)
(dom0-cpus 0)
(vncpasswd '')
Next I used xen-tools to create a VM. The resulting .cfg file:

Code:
kernel      = '/boot/vmlinuz-2.6.22-14-xen'
ramdisk     = '/boot/initrd.img-2.6.22-14-xen'
memory      = '128'
root        = '/dev/hda1 ro'
disk        = [ 'file:/var/xen-images/xLx-1.cfg-disk,hda1,w', 'file:/var/xen-images/xLx-1.cfg-swap,hda2,w' ]
#disk        = [ 'phy:lx5/xLx-1.cfg-disk,hda1,w', 'phy:lx5/xLx-1.cfg-swap,hda2,w' ]
name        = 'xLx-1.cfg'
vif         = [ 'ip=172.30.5.25' ]
vif         = [ 'bridge=xenbr0' ]
on_poweroff = 'destroy'
on_reboot   = 'restart'
on_crash    = 'restart'
The VM starts - no matter, if it uses file- or lvm-disks, but boot always hangs after short time. The last messages are:

Code:
[ 3274.824736] fuse init (API version 7.8)
[ 3274.829181] Failure registering capabilities with primary security module.
[ 3274.860491] thermal: Unknown symbol acpi_processor_set_thermal_limit
[ 3274.869629] device-mapper: ioctl: 4.11.0-ioctl (2006-10-12) initialised: dm-devel@redhat.com
[ 3275.297529] kjournald starting.  Commit interval 5 seconds
[ 3275.297544] EXT3-fs: mounted filesystem with ordered data mode.
Any idea how to fix it?