- 积分
- 78
- 威望
-
- 金钱
-
- 注册时间
- 2010-4-3
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
发表于 2010-5-5 17:29:26
|
显示全部楼层
估计是因为 lnmp 安装包里面 包含了 升级内核的 yum语句~~
但 你升级内核后,会出现:
Kernel panic – not syncing:Attempted to kill init
而且,系统启动时 默认是 启用加载新内核~~~
一、其实如果安装运行脚本前,可以将 以下这句:
yum -y install libtool libtool-libs autoconf kernel-devel
更改为:
yum -y install libtool libtool-libs autoconf
这样,就不会升级编译内核了~
二、如果你已经安装好了,又想进回系统,那么就只能:
vim /etc/grub.conf
将:(默认的0,更改为1)
#boot=/dev/sda
default=1
timeout=5
splashimage=(hd0,0)/boot/grub/splash.xpm.gz
hiddenmenu
title CentOS (2.6.18-164.15.1.el5PAE)
root (hd0,0)
kernel /boot/vmlinuz-2.6.18-164.15.1.el5PAE ro root=LABEL=/
initrd /boot/initrd-2.6.18-164.15.1.el5PAE.img
title CentOS (2.6.18-128.el5PAE)
root (hd0,0)
kernel /boot/vmlinuz-2.6.18-128.el5PAE ro root=LABEL=/
initrd /boot/initrd-2.6.18-128.el5PAE.img
这样,就能正常使用旧内核,进回原来的系统里面了!
|
|