저는 Fedora 16(x64)을 Fedora 17로 업그레이드하기 위해 사전 업그레이드를 실행했습니다. 그리고 정상적으로 작동하는 것 같았습니다. 그래서 나는 새로운 gimp 2.8, gcc 4.7.0 등을 얻었습니다. 그러나 시스템은 fc16의 이전 커널을 계속 사용합니다. Uname -a는 다음을 제공합니다.
Linux localhost.localdomain 3.3.6-3.fc16.x86_64 #1 SMP Wed May 16 21:43:01 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
시스템이 새 커널을 다운로드했기 때문에
/boot/vmlinuz-3.3.7-1.fc17.x86_64
/boot/System.map-3.3.7-1.fc17.x86_64
/boot/initramfs-3.3.7-1.fc17.x86_64.img
/boot/config-3.3.7-1.fc17.x86_64
그러나 시스템은 fc16의 이전 커널을 계속 사용합니다.
/boot/grub2/grub.cfg 파일을 보면 다음과 같습니다.
#
# 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.6-3.fc16.x86_64)' --class fedora --class gnu-linux --class gnu --class os {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='(hd0,gpt2)'
search --no-floppy --fs-uuid --set=root 3521a578-5829-4fb4-a485-8c097df77d07
echo 'Loading Fedora (3.3.6-3.fc16.x86_64)'
linux /vmlinuz-3.3.6-3.fc16.x86_64 root=UUID=57459a16-97a0-46a4-8e71-cc3ec0ca4a3e ro KEYTABLE=dvorak rd.lvm=0 rd.dm=0 quiet SYSFONT=latarcyrheb-sun16 rhgb rd.md.uuid=60956781:734d95ba:424311e2:796702a7 rd.luks=0 LANG=en_US.UTF-8
echo 'Loading initial ramdisk ...'
initrd /initramfs-3.3.6-3.fc16.x86_64.img
}
menuentry 'Fedora (3.3.5-2.fc16.x86_64)' --class fedora --class gnu-linux --class gnu --class os {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='(hd0,gpt2)'
search --no-floppy --fs-uuid --set=root 3521a578-5829-4fb4-a485-8c097df77d07
echo 'Loading Fedora (3.3.5-2.fc16.x86_64)'
linux /vmlinuz-3.3.5-2.fc16.x86_64 root=UUID=57459a16-97a0-46a4-8e71-cc3ec0ca4a3e ro KEYTABLE=dvorak rd.lvm=0 rd.dm=0 quiet SYSFONT=latarcyrheb-sun16 rhgb rd.md.uuid=60956781:734d95ba:424311e2:796702a7 rd.luks=0 LANG=en_US.UTF-8
echo 'Loading initial ramdisk ...'
initrd /initramfs-3.3.5-2.fc16.x86_64.img
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
### BEGIN /etc/grub.d/90_persistent ###
### END /etc/grub.d/90_persistent ###
왜 여전히 fc16 커널만 참조하는지, 그리고 어떻게 업그레이드할 수 있는지에 대한 단서를 얻은 사람이 있습니다.
내 시스템은 2개의 디스크에서 raid1을 사용하고 있지만 /boot는 raid를 사용하지 않습니다. /boot에 대한 마운트는 다음과 같습니다.
/boot 유형 ext2의 /dev/sda2(rw,relatime,seclabel,user_xattr,acl,barrier=1)
그리고 /(내가 가지고 있는 유일한 다른 파일 시스템)은 다음과 같이 마운트됩니다.
/dev/md0 on / ext4 유형(rw,relatime,seclabel,user_xattr,acl,barrier=1,data=ordered)
답변1
위 설명에 있는 Paul의 조언이 효과가 있다면 다음과 같이 변경 사항을 유지하는 것이 좋습니다.
su -c "grub2-mkconfig -o /boot/grub2/grub.cfg"