Thanks...I'll try that
right now I have an F16 kernel
and a F17 machine
[root@lmkiii etc]# cat system-release
Fedora release 17 (Beefy Miracle)
[root@lmkiii etc]#
[root@lmkiii etc]# uname -r
3.3.7-1.fc16.i686.PAE
____________________________
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Fedora (3.3.7-1.fc16.i686.PAE)' --class fedora --class gnu-linux --class gnu --class os {
savedefault
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='(hd0,gpt2)'
search --no-floppy --fs-uuid --set=root b408347c-264f-4a0a-b1f4-091f05c8699c
echo 'Loading Fedora (3.3.7-1.fc16.i686.PAE)'
linux /vmlinuz-3.3.7-1.fc16.i686.PAE root=/dev/mapper/vg_lmkiii-lv_root ro quiet rhgb SYSFONT=latarcyrheb-sun16 LANG=en_US.UTF-8 KEYTABLE=us
echo 'Loading initial ramdisk ...'
initrd /initramfs-3.3.7-1.fc16.i686.PAE.img
}
menuentry 'Fedora (3.3.6-3.fc16.i686.PAE)' --class fedora --class gnu-linux --class gnu --class os {
savedefault
load_video
set gfxpayload=keep
insmod gzio
_____________________________________
I am 64 bit so what do I put in grub
concerning the PAE and x86_64
kernel-3.3.7-1.fc17.x86_64
'Fedora (3.3.7-1.fc16.i686.PAE)'
somewhere is a list of proper kernel names
maybe "PAE" disappeared with F17!!!
---------- Post added at 06:57 PM ---------- Previous post was at 01:33 PM ----------
tried this grub2.cfg and got "file not found"
so I must have used the wrong kernel name
there are many "experts who have advised to edit this file"
maybe I need to run grub2-install
I am out of my league
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub2-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function load_video {
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
}
set timeout=5
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Fedora (3.3.7-1.fc17.x86_64)' --class fedora --class gnu-linux --class gnu --class os {
savedefault
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='(hd0,gpt2)'
search --no-floppy --fs-uuid --set=root b408347c-264f-4a0a-b1f4-091f05c8699c
echo 'Loading Fedora (3.3.7-1.fc17.x86_64)'
linux /vmlinuz-3.3.7-1.fc17.x86_64 root=/dev/mapper/vg_lmkiii-lv_root ro quiet rhgb SYSFONT=latarcyrheb-sun16 LANG=en_US.UTF-8 KEYTABLE=us
echo 'Loading initial ramdisk ...'
initrd /initramfs-3.3.7-1.fc16.i686.PAE.img
}
menuentry 'Fedora (3.3.6-3.fc16.i686.PAE)' --class fedora --class gnu-linux --class gnu --class os {
savedefault
load_video
---------- Post added at 07:38 PM ---------- Previous post was at 06:57 PM ----------
well I did it this time!
I wanted to let grub find the correct spelling of the kernel
since I failed.
grub2-mkconfig /etc/grub2.cfg
grub2-install /dev/sdb
reboot
this time "file not found" and a grub rescue prompt
This doesn't need to be this complicated
now using dual boot XP Professional to write this post