|
|
|
|
|
|
|
|
|
|
xen-users
Re: [Xen-users] grub.conf//menu.lst
Mehmet Can ÖNAL wrote:
Hi;
İ have done all the stuff that you explain (thanks for all of course) and try to boot xen
but now i have another problem that "kernel panic : unable to mount root fs on device
(0,0)"
Is there something about volume manager?
More or less, yes. You forgot the initrd module statement in grub.conf.
So the kernel misses the device mapper module ("driver") that is in the
initrd.
Just add "module initrd /initrd-<version>.img" to grub.conf. You might
need to create it with the mkinitrd command if it is not in /boot already.
BTW. Why are you using Xen 3.1?
Regards,
Bas.
My final grub is
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You have a /boot partition. This means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,0)
# kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00
# initrd /initrd-version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux AS (2.6.9-67.ELsmp)
root (hd0,0)
kernel /vmlinuz-2.6.9-67.ELsmp ro root=/dev/VolGroup00/LogVol00 rhgb
quiet
initrd /initrd-2.6.9-67.ELsmp.img
title Red Hat Enterprise Linux AS-up (2.6.9-67.EL)
root (hd0,0)
kernel /vmlinuz-2.6.9-67.EL ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.9-67.EL.img
title XEN-3.1 FROM TarBall
root (hd0,0)
kernel /xen.gz dom0_mem=192M
module /vmlinuz-2.6-xen ro root=/dev/VolGroup00/LogVol00 rhgb
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|