Chinaunix首页 | 论坛 | 博客
  • 博客访问: 601041
  • 博文数量: 113
  • 博客积分: 2554
  • 博客等级: 少校
  • 技术积分: 1428
  • 用 户 组: 普通用户
  • 注册时间: 2011-12-21 19:53
文章分类

全部博文(113)

文章存档

2014年(1)

2013年(2)

2012年(94)

2011年(16)

分类: LINUX

2012-04-12 09:57:59

CentOS Linux 升级内核步骤和方法

1、查看当前系统内核

# uname -r
2.6.32-71.e16.i686

2、下载linux-3.2.14内核包

# tar xvf linux-3.2.14.tar.bz2
# cd linux-3.2.14

3、配置内核并安装

#make mrproper #清除环境变量,即清除配置文件
#cp /boot/config-2.6.32-71.el6.i686 .config
#make menuconfig #在菜单模式下选择需要编译的内核模块#
#make clean #确保所有东西均保持最新状态.
#make bzImage #生成内核文件
#make modules #编译模块
#make modules_install #安装模块
#make install #安装

4、vim /etc/grub.conf,将 default=1 改为 default=0

[root@centos linux-3.2.14]# cat /etc/grub.conf # grub.conf generated by anaconda # # Note that you do not have to rerun grub after making changes to this file # NOTICE: You have a /boot partition. This means that # all kernel and initrd paths are relative to /boot/, eg. # root (hd0,0) # kernel /vmlinuz-version ro root=/dev/sda3 # initrd /initrd-[generic-]version.img #boot=/dev/sda default=0 timeout=3 splashimage=(hd0,0)/grub/splash.xpm.gz hiddenmenu title CentOS Linux (3.2.14-rt24) root (hd0,0) kernel /vmlinuz-3.2.14-rt24 ro root=UUID=ab9d2166-3d58-4c30-84ed-d6d1be1e102e rd_NO_LUKS rd_NO_LVM rd_NO_MD rd_NO_DM LANG=zh_CN.UTF-8 KEYBOARDTYPE=pc KEYTABLE=us crashkernel=auto rhgb quiet initrd /initramfs-3.2.14-rt24.img title centos (2.6.32-71.el6.i686) root (hd0,0) kernel /vmlinuz-2.6.32-71.el6.i686 ro root=UUID=ab9d2166-3d58-4c30-84ed-d6d1be1e102e rd_NO_LUKS rd_NO_LVM rd_NO_MD rd_NO_DM LANG=zh_CN.UTF-8 KEYBOARDTYPE=pc KEYTABLE=us crashkernel=auto rhgb quiet initrd /initramfs-2.6.32-71.el6.i686.img

5、重启系统,并查看内核

# reboot
# uname -r
3.2.14-rt24
6、问题及解决办法
HOSTCC scripts/basic/fixdepHOSTCC 
scripts/kconfig/conf.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] Error 1make: *** [menuconfig] Error 2如果出现上面的错误,记得要安装ncurses-devel,如果你设置了本地源的话,就很简单了。
# yum install ncurses-devel
阅读(7965) | 评论(3) | 转发(2) |
给主人留下些什么吧!~~

printk19862013-07-30 23:08:23

rovegaby:楼主你好:
我是从内核是 2.6.18-348.6.1.e15 升级到 3.9.2
我安装你的方法在 make modules 报如下的错:
fs/gfs2/rgrp.c: In function ‘rg_mblk_search’:
fs/gfs2/rgrp.c:1398: 编译器内部错误:段错误
请提交一份完整的错误报告,
如有可能请附上经预处理后的源文件。
具体步骤请参见 <URL:http://bugzilla.redhat.com/bugzilla>。
Preprocessed source stored into /tmp/ccBNUX5Z.out file, please attach this to your bugreport.
make[2]: *** [fs/gfs2/rgrp.o] 错误 1
make[1]: *** [fs/gfs2] 错误 2

换个编译器,试试,一般出现此类代码级的错误,说明那不是你的错误,是不需要你该代码的,呵呵

回复 | 举报

rovegaby2013-06-28 15:28:34

楼主你好:
我是从内核是 2.6.18-348.6.1.e15 升级到 3.9.2
我安装你的方法在 make modules 报如下的错:
fs/gfs2/rgrp.c: In function ‘rg_mblk_search’:
fs/gfs2/rgrp.c:1398: 编译器内部错误:段错误
请提交一份完整的错误报告,
如有可能请附上经预处理后的源文件。
具体步骤请参见 <URL:http://bugzilla.redhat.com/bugzilla>。
Preprocessed source stored into /tmp/ccBNUX5Z.out file, please attach this to your bugreport.
make[2]: *** [fs/gfs2/rgrp.o] 错误 1
make[1]: *** [fs/gfs2] 错误 2