On Saturday 13 January 2007 07:24, Xiaoyu Peng wrote: > # (3) Xen3 / ArchLinux Dom0 > title Xen3 / ArchLinux Dom0 > root (hd0,3) > kernel /boot/xen-3.gz > module /boot/vmlinuz26ck root=/dev/sda4 ro vga=773 > module /boot/kernel26ck.img > > but when i boot from it, it says not recongize this kernel > maybe i need kernel26 or a patched one ?
you need a xen dom0 kernel. its better you do a manual install from scratch for now. say you extract xen to /usr/src/xen_3.0.3 (if you have more than 4gigs of ram, you need to enable PAE. just add XEN_TARGET_X86_PAE=y to all the make commands below) make tools && make xen && make tools-install && make xen-install in Makefile, KERNELS ?= linux-2.6-xen0 linux-2.6-xenU make linux-2.6-xen0-config (enable all the stuff you need especially the dummy network driver :) ) make linux-2.6-xen0-build make install-kernels I think the processor types in xen0 and xenU must be the same.. or if you don't want to fiddle, just leave them at the defaults. now setup your menu.lst for the new kernels. and reboot. You might need to replace the glibc with a xen compatible one. Regards, -- Vinay S Shastry http://vinayshastry.blogspot.com/ _______________________________________________ arch mailing list [email protected] http://www.archlinux.org/mailman/listinfo/arch
