Hi again !
Finally, after 10 days and 4.000.000 distros & formats, Xen is working like a charm!
How it works?
Remember the problem:
BOX: AMD 64+ 5200 with Asus M2N-X PLUS motherboard.
* Before
i install some distro i receibe IP from the DHCP server of the network,
everything goes OK, update my box and install xen (hypervisor v3.2) and
xen kernel (uname -r give me this ==> 2.6.24-19-xen) this in Ubuntu
8.04 . Using one of the 3000 howto's of the web.
When i restart with the Xen Kernel i never receibe IP again, like lossing conection.
Solution:
NOAPIC on the xen-kernel!!
I change the file /boot/grub/menu.list
old line
title Xen 3.2 / Ubuntu 8.04.1, kernel 2.6.24-19-xen
root (hd0,0)
kernel /boot/xen-3.2.gz
module /boot/vmlinuz-2.6.24-19-xen root=UUID=42eaad38-6350-4e59-a469-725ce1cad223 ro console=tty0
module /boot/initrd.img-2.6.24-19-xen
quiet
NEW line
title Xen 3.2 / Ubuntu 8.04.1, kernel 2.6.24-19-xen
root (hd0,0)
kernel /boot/xen-3.2.gz
noapic
module /boot/vmlinuz-2.6.24-19-xen root=UUID=42eaad38-6350-4e59-a469-725ce1cad223 ro console=tty0
module /boot/initrd.img-2.6.24-19-xen
quiet
Sorry if this is a know problem, this is new for me.
Thanks to everyone!
Emiliano Vazquez.