RHEL5.2内核升级
摘自:
另一篇好文章:
把RHEL5.2内核从2.6.18-92.el5升级到最新的2.6.28.10(不过我只是做最简单的,并没有对内核进行裁剪)
1.查看本机内核版本
#[root@local ~]uname -r
2.6.18-92.el5
2.下载最新的内核源代码
网站地址:
,可以根据自己需求下载需要的。
#wget linux-2.6.28.10.tar.bz2
解压缩,解开以后有450M,之前下了一个解开才几十M,后面make的时候出错
[root@local ~]# tar zxvf linux-2.6.28.tar.bz2
[root@local ~]# mv linux-2.6.28 /usr/src/kernel ;移动到/usr/src/kernel下
3.下面就是升级的步骤
[root@local linux-2.6.28]# make mrproper
[root@local linux-2.6.28]# make menuconfig ;如果不定制模块可以跳过这步
;编译内核,时间比较长,大概花了45分钟,取决于机器及配置项
[root@local linux-2.6.28]# make
[root@local linux-2.6.28]# make modules_install
[root@local linux-2.6.28]# make install
如果没有意外的话基本上是成功了,重启机器:
#[root@local linux-2.6.28]reboot
编译成功后系统启动菜单grub.conf会被修改,在机器启动时会有新旧两个内核版本可以选择.
查看新内核版本:
#[root@local ~]uname -r
2.6.28.10
=====================================================
tsm操作记录:
[root@selfhelpdev-02 linux-2.6.28]# make menuconfig
HOSTCC scripts/basic/fixdep
HOSTCC scripts/basic/docproc
HOSTCC scripts/basic/hash
HOSTCC scripts/kconfig/conf.o
HOSTCC scripts/kconfig/kxgettext.o
*** Unable to find the ncurses libraries or the
*** required header files.
*** 'make menuconfig' requires the ncurses libraries.
***
*** Install ncurses (ncurses-devel) and try again.
***
make[1]: *** [scripts/kconfig/dochecklxdialog] 错误 1
make: *** [menuconfig] 错误 2
---------------------------------------------------------
根据上面需要:ncurses-devel
[root@RHEL52 ~]# mount /dev/cdrom /mnt/cdrom
[root@RHEL52 ~]# rpm -ivh /mnt/cdrom/Server/ncurses-devel-5.5-24.20060715.i386.rpm
阅读(820) | 评论(0) | 转发(0) |