spolti
(usa Fedora)
Enviado em 09/02/2011 - 15:05h
Meu grub.conf:
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You do not have a /boot partition. This means that
# all kernel and initrd paths are relative to /, eg.
# root (hd0,0)
# kernel /boot/vmlinuz-version ro root=/dev/hda1
# initrd /boot/initrd-version.img
#boot=/dev/hda
default=0
timeout=5
splashimage=(hd0,0)/boot/grub/splash.xpm.gz
hiddenmenu
password --md5 $1$P.IftFjf$pVG30lmRVRBc2USwyoA/d/
title CentOS (2.6.18-194.11.1.el5)
root (hd0,0)
kernel /boot/vmlinuz-2.6.18-194.11.1.el5 ro root=LABEL=/ rhgb quiet
initrd /boot/initrd-2.6.18-194.11.1.el5.img
title CentOS (2.6.18-164.el5)
root (hd0,0)
kernel /boot/vmlinuz-2.6.18-164.el5 ro root=LABEL=/ rhgb quiet
initrd /boot/initrd-2.6.18-164.el5.img
A primeira linha de boot é sempre a versão mais atual, é gerada sempre que o kernel é atualizado através do yum (meu caso).
vc pode verificar..
vai no diretório: /boot/
procure pelo vmlinuz mais atual:
-rw-r--r-- 1 root root 1855924 Sep 3 2009 vmlinuz-2.6.18-164.el5
-rw-r--r-- 1 root root 158 Sep 3 2009 .vmlinuz-2.6.18-164.el5.hmac
-rw-r--r-- 1 root root 1876180 Aug 10 2010 vmlinuz-2.6.18-194.11.1.el5
-rw-r--r-- 1 root root 163 Aug 10 2010 .vmlinuz-2.6.18-194.11.1.el5.hmac
no meu caso este: -rw-r--r-- 1 root root 1876180 Aug 10 2010 vmlinuz-2.6.18-194.11.1.el5
compare se no grub.conf a primeira linha de boot
title CentOS (2.6.18-194.11.1.el5) é a mesma versão desta -rw-r--r-- 1 root root 1876180 Aug 10 2010 vmlinuz-2.6.18-194.11.1.el5
e veja também nesta linha kernel /boot/vmlinuz-2.6.18-194.11.1.el5 ro root=LABEL=/ rhgb quiet
e também no /boot procure por initrd
meu caso:
-rw------- 1 root root 2533712 Aug 12 22:59 initrd-2.6.18-164.el5.img
-rw------- 1 root root 2576512 Aug 13 01:11 initrd-2.6.18-194.11.1.el5.img
procure pelo atual e verifice se a versão bate com a linha do grub.conf
initrd /boot/initrd-2.6.18-194.11.1.el5.img
se não for.. pode alterar na mão sem medo de forma que fique tudo com a mesma versão....
title CentOS (2.6.18-194.11.1.el5)
root (hd0,0)
kernel /boot/vmlinuz-2.6.18-194.11.1.el5 ro root=LABEL=/ rhgb quiet
initrd /boot/initrd-2.6.18-194.11.1.el5.img
tu tbm pode tentar dar boot na versão anterior selecionando na tela principal do grub...
o grub sempre mantem as versões lá, sobe a atual para a primeira e as sucessores vão descendo...
Abs