获取要升级的内核版本的包
#wget -c https://www.kernel.org/pub/linux/kernel/v3.x/内核版本
若得到的内核的压缩格式为tar.xz,则需要两步解压
#xz -d ***.tar.xz #tar -xvf ***.tar
安装必须库
#yum install gcc #yum install gcc-c++ #yum install make #yum install ncurses-devel #yum install perl #yum install zlib-devel #yum install openssl-devel #yum install perl-devel #yum install perl-CAPN #yum install cpio #yum install expat-devel #yum install gettext-devel #yum install tcl #yum install wget (在线获得源代码包的指令)
安装zlib库:
1、可以再http://www.zlib.net/下载最新的zlib
#tar xvzf zlib-1.2.8.tar.gz #cd zlib-1.2.8 #./configure #make #make install
安装指令git
wget http://git-core.googlecode.com/files/git-1.8.3.2.tar.gz (也可以换成其他版本)
#tar xzvf git-1.8.3.2.tar.gz #cd git-1.8.3.2 #autoconf #./configure #make #make install
更新内核
#cd linux-3.8.8 #make mrproper ;然后去除原始配置 #make menuconfig ;内核设置保存配置
#make bzImage ;编译内核镜像(注意I区分大小写)
#make modules ;编译模块
#make modules_install ;安装模块
#make install ;安装镜像
#vi /etc/grub.conf ;修改默认启动项为0
#reboot ;重启机器
时间: 2024-10-18 02:52:12