Hello, I did a fresh install of FC5. Everything works fine with kernel.x86_64 .2.6.15-1.2054_FC5 when I yum update to kernel.x86_64.2.6.17-1.2187_FC5 I cannot boot the new kernel. I get an error along the lines of 'mount: can't find root'. I have tried the solution where I gunzip /boot/initrd-2.6.17-1.2187_FC5.img and edit init to be...
#mount /sysroot
mount -o defaults --ro -t ext3 /dev/sdb3 /sysroot
...but then I just get a similar message where it can't find /dev/sdb3. I have tried /dev/hdf3 and /dev/hde3 also.
here is my fstab...
Code:
LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
devpts /dev/pts devpts gid=5,mode=620 0 0
tmpfs /dev/shm tmpfs defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs defaults 0 0
LABEL=SWAP-sdb4 swap swap defaults 0 0
here is grub.conf...
Code:
#boot=/dev/sdb
default=2
timeout=20
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Fedora Core (2.6.17-1.2187_FC5)
root (hd0,0)
kernel /vmlinuz-2.6.17-1.2187_FC5 ro root=LABEL=/ rhgb quiet
initrd /initrd-2.6.17-1.2187_FC5.img
title Fedora Core (2.6.15-1.2054_FC5)
root (hd0,0)
kernel /vmlinuz-2.6.15-1.2054_FC5 ro root=LABEL=/ rhgb quiet
initrd /initrd-2.6.15-1.2054_FC5.img
title Windows XP
map (hd0) (hd1)
map (hd1) (hd0)
rootnoverify (hd1,0)
chainloader +1
here is grubs device.map...
Code:
(hd1) /dev/sda
(hd0) /dev/sdb
here is fdisk -l...
Code:
Disk /dev/sda: 320.0 GB, 320071851520 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda4 * 1 38912 312560608+ 7 HPFS/NTFS
Disk /dev/sdb: 160.0 GB, 160040803840 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 * 1 13 104391 83 Linux
/dev/sdb2 16908 19457 20482875 f W95 Ext'd (LBA)
/dev/sdb3 14 16524 132624607+ 83 Linux
/dev/sdb4 16525 16906 3068415 82 Linux swap / Solaris
/dev/sdb5 16908 19457 20482843+ b W95 FAT32
Partition table entries are not in disk order
Any ideas please? Doing my head in.