CentOS 7 升级内核至 5.x
母鸡谨慎使用!

查看 CentOS 7 系统版本和内核版本

cat /etc/redhat-release
uname -a

导入elrepo的key,并安装内核(elrepo)仓库
elrepo仓库支持Red Hat Enterprise Linux(RHEL)及其衍生版本(Scientific Linux,CentOS等)。

rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
yum install https://www.elrepo.org/elrepo-release-7.el7.elrepo.noarch.rpm

查看可用内核版本

yum --disablerepo="*" --enablerepo="elrepo-kernel" list available

yum安装kernel-ml 最新版内核
其中lt为4.4版本,ml是5.8版本,所以这里我们需要安装ml版本

yum install kernel-ml --enablerepo=elrepo-kernel -y

这里如果下载很慢,自行想办法解决。

修改grub中默认的内核版本
查看默认的启动顺序

awk -F\' '$1=="menuentry " {print $2}' /boot/grub2/grub.cfg

CentOS Linux (5.13.9-1.el7.elrepo.x86_64) 7 (Core)
CentOS Linux (3.10.0-1160.36.2.el7.x86_64) 7 (Core)
CentOS Linux (3.10.0-1062.el7.x86_64) 7 (Core)
CentOS Linux (0-rescue-5963a40deb124e87ab5d5e2e721b95d3) 7 (Core)

修改 grub,将GRUB_DEFAULT的值设置为0,重启后就会使用新内核

cat /etc/default/grub
sed -i 's/GRUB_DEFAULT=saved/GRUB_DEFAULT=0/g' /etc/default/grub

最后运行grub2-mkconfig刷新一下配置

grub2-mkconfig -o /boot/grub2/grub.cfg

重启主机,查看内核版本

uname -a