Linux内核升级

Background

  • wireguard 内核要求内核版本4.18以上,对于内核版本4.18以下,无法使用WireGuard。
  • 内核版本4.18以上、5.6以下,可以通过升级内核的方式支持WireGuard。
  • 内核5.6及以上版本已经原生支持WireGuard,可以直接使用原生的WireGuard功能。

注意:内核升级有风险,升级失败概不负责,重要数据自行备份❗️❗️❗️

1.载入公钥

sh 复制代码
rpm --import http://www.elrepo.org/RPM-GPG-KEY-elrepo.org

2.升级安装 elrepo

sh 复制代码
rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-3.el7.elrepo.noarch.rpm

3.载入 elrepo-kernel 元数据

sh 复制代码
yum --disablerepo=\* --enablerepo=elrepo-kernel repolist

4.安装最新版本的内核

sh 复制代码
yum --disablerepo=\* --enablerepo=elrepo-kernel install  kernel-ml.x86_64  -y

5.删除旧版本工具包

sh 复制代码
yum remove kernel-tools-libs.x86_64 kernel-tools.x86_64  -y

6.安装新版本工具包

sh 复制代码
yum --disablerepo=\* --enablerepo=elrepo-kernel install kernel-ml-tools kernel-ml-devel kernel-ml-headers -y

7.查看内核插入顺序

sh 复制代码
grep "^menuentry" /boot/grub2/grub.cfg | cut -d "'" -f2

CentOS Linux (6.9.7-1.el7.elrepo.x86_64) 7 (Core)

CentOS Linux (3.10.0-1160.92.1.el7.x86_64) 7 (Core)

CentOS Linux (3.10.0-1160.el7.x86_64) 7 (Core)

CentOS Linux (0-rescue-57beda17722b499da37e22c55c2ef57f) 7 (Core)
默认新内核是从头插入,默认启动顺序也是从 0 开始。

8.查看当前实际启动顺序

sh 复制代码
grub2-editenv list

9.设置默认启动

sh 复制代码
grub2-set-default 'CentOS Linux (6.9.7-1.el7.elrepo.x86_64) 7 (Core)'

10.重启系统

sh 复制代码
reboot

11.查看当前实际启动顺序

sh 复制代码
grub2-editenv list
相关推荐
wanhengidc11 分钟前
短视频运营行业该如何选择服务器?
运维·服务器
雨中rain25 分钟前
Linux -- 从抢票逻辑理解线程互斥
linux·运维·c++
-KamMinG36 分钟前
Centos7.9安装openldap+phpldapadmin+grafana配置LDAP登录最详细步骤 亲测100%能行
运维·grafana
Bessssss1 小时前
centos日志管理,xiao整理
linux·运维·centos
s_yellowfish1 小时前
Linux服务器pm2 运行chatgpt-on-wechat,搭建微信群ai机器人
linux·服务器·chatgpt
豆是浪个1 小时前
Linux(Centos 7.6)yum源配置
linux·运维·centos
vvw&1 小时前
如何在 Ubuntu 22.04 上安装 Ansible 教程
linux·运维·服务器·ubuntu·开源·ansible·devops
我一定会有钱1 小时前
【linux】NFS实验
linux·服务器
王铁柱子哟-1 小时前
解决 正在下载VS Code 服务器... 问题
运维·服务器
Ven%1 小时前
如何在防火墙上指定ip访问服务器上任何端口呢
linux·服务器·网络·深度学习·tcp/ip