Centos 通过yum的方式升级内核

Posted Bourbon.Tian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos 通过yum的方式升级内核相关的知识,希望对你有一定的参考价值。

在安装某些软件时,可能对我们的系统内核版本有要求。

比如在安装docker要满足一定的条件,对于centos系统,要求必须是64位,并且内核版本是3.10以上。

如果你的centos操作系统内核低于3.10,需要升级到这个版本以上,才能安装docker。

准备工作

1.1 查看当前系统版本

# uname -a

 

1.2 导入public key

# rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org

 

1.3 安装ELRepo

# rpm -Uvh http://www.elrepo.org/elrepo-release-6-6.el6.elrepo.noarch.rpm

  

安装内核

2.1 通过yum安装

# yum --enablerepo=elrepo-kernel install kernel-lt -y 

  

2.2 编辑grub.conf,修改grub引导顺序

# vim /etc/grub.conf

确认刚安装好的内核在哪个位置,然后设置default值(从0开始),一般新安装的内核都在第一个位置,所以设置default=0。

 

2.3 重启,查看内核版本

# uname -a
Linux docker 3.10.105-1.el6.elrepo.x86_64 #1 SMP Fri Feb 10 10:48:08 EST 2017 x86_64 x86_64 x86_64 GNU/Linux

  

以上是关于Centos 通过yum的方式升级内核的主要内容,如果未能解决你的问题,请参考以下文章

centos6 yum方式升级内核

Linux升级内核教程(CentOS7)

烂泥:centos6 yum方式升级内核

CentOS7使用yum和源码升级内核

centos7升级内核

CentOS7内核升级