centos6.5源码升级内核
http://www.centoscn.com/CentOS/config/2014/1124/4170.html
2014-04-18 07:11 作者: sularry 来源: 本站 浏览: 0 views 我要评论 字号: 大 中 小
摘要: 1.下载源码包 网址:http://www.kernel.org 在首页可以看到有 stable,longterm 等版本,一般选择下载 longterm 版本,因为此版本为提供长期支持的稳定版,因此我选择 3.12.16. [[email protected]
1.下载源码包
网址:http://www.kernel.org
在首页可以看到有 stable,longterm 等版本,一般选择下载 longterm 版本,因为此版本为提供长期支持的稳定版,因此我选择 3.12.16.
[[email protected]~]# wget https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.12.16.tar.xz
2.解压并进入目录
[[email protected]~]# tar -xf linux-3.12.16.tar.xz
[[email protected]~]# cd linux-3.12.16
3.更新当前系统
[[email protected]~]# yum update
[[email protected]~]# yum upgrade
4.安装编译内核所需要的软件包
[[email protected]~]# yum groupinstall “Development Tools”
[[email protected]~]# yum install ncurses-devel
[[email protected]~]# yum install qt-devel
[[email protected]~]# yum install hmaccalc zlib-devel binutils-devel elfutils-libelf-devel
5.查看当前系统内核
[[email protected]~]# uname -r
2.6.32-358.11.1.el6.x86_64
6.将当前系统内核的配置文件拷贝到当前目录
[[email protected]~]# cp /boot/config-2.6.32-358.11.1.el6.x86_64 .config
7.使用当前系统内核配置,并自动接受每个新增选项的默认设置
[[email protected]~]# sh -c ‘ yes “” | make oldconfig‘
8.编译
[[email protected]~]# make bzImage
[[email protected]~]# make modules
[[email protected]ntOS-BinaryDev~]# make modules_install
9.安装
[[email protected]~]# make install
如果出现少量 ERROR 可以忽略
10.修改 Grub 引导顺序
[[email protected]~]# vim /etc/grub.conf
一般新内核的位置都在第一个,所以设置 default=0.
11.重启后查看内核版本号
[[email protected]~]# uname -r
3.12.16
12.如果失败,转至第 5 步,在重新开始之前,需要清理上次编译的现场
[[email protected]~]# make mrproper
更多linux教程阅读:http://www.21ops.com/linux/installconfig