标签:
[root@lr send]# uname -r
2.6.32-431.el6.i686
[root@lr send]# cat /etc/centos-release
CentOS release 6.5 (Final)
编译安装新内核,依赖于开发环境和开发库
# yum grouplist //查看已经安装的和未安装的软件包组,来判断我们是否安装了相应的开发环境和开发库;
# yum groupinstall "Development Tools" //一般是安装这两个软件包组,这样做会确定你拥有编译时所需的一切工具
# yum install ncurses-devel //你必须这样才能让 make *config 这个指令正确地执行
# yum install qt-devel //如果你没有 X 环境,这一条可以不用
# yum install hmaccalc zlib-devel binutils-devel elfutils-libelf-devel //创建 CentOS-6 内核时需要它们
如果当初安装系统是选择了Software workstation,上面的安装包几乎都已包含。
Linux内核版本有两种:稳定版和开发版 ,Linux内核版本号由3个数字组成:r.x.y
去 http://www.kernel.org 首页,可以看到有stable, longterm等版本,longterm是比stable更稳定的版本,会长时间更新,因此我选择 3.10.58。
[root@lr linux]# tar xf linux-4.0.tar.xz -C /usr/src/
[root@lr linux-4.0]# cp /boot/config-2.6.32-431.el6.i686 .config
我们在系统原有的内核配置文件的基础上建立新的编译选项,所以复制一份到当前目录下,命名为.config。接下来继续配置:
[root@lr linux-4.0]# sh -c ‘yes "" | make oldconfig‘
会读取当前目录下的
make oldconfig.config
文件,在.config
文件里没有找到的选项则提示用户填写,然后备份.config
文件为.config.old
,并生成新的.config
文件,
参考http://stackoverflow.com/questions/4178526/what-does-make-oldconfig-do-exactly-linux-kernel-makefile
[root@lr linux-4.0]# make -j4 bzImage//生成内核文件
[root@lr linux-4.0]# make -j4 modules //编译模块
-j后面的数字是线程数,用于加快编译速度,一般的经验是,逻辑CPU,就填写那个数字,例如有8核,则为-j8。(modules部分耗时30多分钟)
[root@lr linux-4.0]# make -j4 modules_install //安装模块
[root@lr linux-4.0]# make install //安装内核
出现以下问题,由于发行版linux内核可能被更改,会缺少某些模块,这些问题可以忽略。
[root@lr linux-4.0]# make install
sh ./arch/x86/boot/install.sh 4.0.0 arch/x86/boot/bzImage \
System.map "/boot"
ERROR: modinfo: could not find module sco
ERROR: modinfo: could not find module l2cap
ERROR: modinfo: could not find module vmware_balloon
ERROR: modinfo: could not find module snd_page_alloc
ERROR: modinfo: could not find module crc_t10dif
安装完成后,需要修改Grub引导顺序,让新安装的内核作为默认内核。
编辑 grub.conf文件,
[root@lr linux-4.0]# vim /boot/grub/grub.conf
default=0
timeout=5
splashimage=(hd0,1)/boot/grub/splash.xpm.gz
hiddenmenu
title CentOS (4.0.0)
root (hd0,1)
kernel /boot/vmlinuz-4.0.0 ro root=UUID=4d253ebe-9d78-47f0-a586-aff55f8a27f1 rd_NO_LUKS KEYBOARDTYPE=pc KEYTABLE=us rd_NO_MD crashkernel=auto LANG=zh_CN.UTF-8 rd_NO_LVM rd_NO_DM rhgb quiet
initrd /boot/initramfs-4.0.0.img
title CentOS (2.6.32-431.el6.i686)
root (hd0,1)
数一下刚刚新安装的内核在哪个位置,从0开始,然后设置default为那个数字,一般新安装的内核在第一个位置,所以设置default=0。
重启reboot
:
[root@lr 桌面]# uname -r
4.0.0
升级内核成功!
可以先清除,再重新编译:
# make mrproper #完成或者安装过程出错,可以清理上次编译的现场
# make clean
参考http://blog.csdn.net/taiyang1987912/article/details/42744019
标签:
原文地址:http://www.cnblogs.com/linrong/p/4430107.html