Originally Posted by
bismay46
I have edited the file /etc/grub.d/40_custom as follows
menuentry "Fedora 12 - 2.6.32.9-70 (on /dev/sdb2)" {
insmod ext2
set root=(hd1,2)
search --no-floppy --fs-uuid --set 745f4361-0629-41aa-9dfd-edd7f6679268
linux /boot/vmlinuz-2.6.32.9-70.fc12 root=UUID= 745f4361-0629-41aa-9dfd-edd7f6679268 ro quiet splash
initrd /boot/initrd-2.6.32.9-70.fc12
}
Alternatively, I think that you are missing a couple of things from your entry.
For 32-bit:
Code:
menuentry "Fedora 12 - 2.6.32.9-70 (on /dev/sdb2)" {
insmod ext2
set root=(hd1,2)
search --no-floppy --fs-uuid --set 745f4361-0629-41aa-9dfd-edd7f6679268
linux /boot/vmlinuz-2.6.32.9-70.fc12.i686 ro root=UUID= 745f4361-0629-41aa-9dfd-edd7f6679268 LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us rhgb quiet
initrd /boot/initramfs-2.6.32.9-70.fc12.i686.img
}
Or 64-bit:
Code:
menuentry "Fedora 12 - 2.6.32.9-70 (on /dev/sdb2)" {
insmod ext2
set root=(hd1,2)
search --no-floppy --fs-uuid --set 745f4361-0629-41aa-9dfd-edd7f6679268
linux /boot/vmlinuz-2.6.32.9-70.fc12.x86_64 ro root=UUID= 745f4361-0629-41aa-9dfd-edd7f6679268 LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us rhgb quiet
initrd /boot/initramfs-2.6.32.9-70.fc12.x86_64.img
}
Bookmarks