Centos7 升级内核为最新长期维护版 4.4
2021/10/11 7:14:29
本文主要是介绍Centos7 升级内核为最新长期维护版 4.4,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
elrepo 官网
http://elrepo.org https://elrepo.org/tiki/tiki-index.php
安装 ELRepo源
# 查看内核 [root@localhost ~]# uname -r # 安装 Yum密钥 [root@localhost ~]# rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org # 安装对应的Yum源 # To install ELRepo for RHEL-**8** or CentOS-**8**: - yum install https://www.elrepo.org/elrepo-release-8.el8.elrepo.noarch.rpm # To install ELRepo for RHEL-**7**, SL-**7** or CentOS-**7**: 需要安装 yum -y install yum-plugin-fastestmirror - yum install https://www.elrepo.org/elrepo-release-7.el7.elrepo.noarch.rpm # To install ELRepo for RHEL-**6**, SL-**6** or CentOS-**6**: 需要安装 yum -y install yum-plugin-fastestmirror - yum install https://www.elrepo.org/elrepo-release-6.el6.elrepo.noarch.rpm
Centos7 安装内核
# 导入源 [root@localhost ~]# yum -y install https://www.elrepo.org/elrepo-release-7.el7.elrepo.noarch.rpm # yum --disablerepo="*" --enablerepo="elrepo-kernel" list available 查看kernel的版本 # lt:longterm的缩写:长期维护版 # ml:mainline的缩写:最新稳定版 # 安装最新长期维护版kernel [root@localhost ~]# yum -y --enablerepo=elrepo-kernel install kernel-lt # 设置为默认为最新版本kernel [root@localhost ~]# grub2-set-default 0 [root@localhost ~]# reboot # 查看修改后结果 [root@localhost ~]# uname -r
[root@localhost ~]# uname -r 3.10.0-1127.13.1.el7.x86_64 # 1. 查看当前default的entry [root@localhost ~]# grub2-editenv list saved_entry=CentOS Linux (3.10.0-1127.13.1.el7.x86_64) 7 (Core) # 2. 查看所有的entry [root@localhost ~]# awk -F \' '$1=="menuentry " {print i++ " : " $2}' /etc/grub2.cfg 0 : CentOS Linux (3.10.0-1127.13.1.el7.x86_64) 7 (Core) 1 : CentOS Linux (4.4.228-2.el7.elrepo.x86_64) 7 (Core) 2 : CentOS Linux (3.10.0-1062.el7.x86_64) 7 (Core) 3 : CentOS Linux (0-rescue-fc3fb3f757784457a95f1652cd0c7f93) 7 (Core) [root@localhost ~]# grub2-set-default "CentOS Linux (4.4.228-2.el7.elrepo.x86_64) 7 (Core)" # [root@localhost ~]# grub2-set-default 1 (第二种方式,输入对应的内核编号) # 3. 结果查看 [root@localhost ~]# grub2-editenv list saved_entry=CentOS Linux (4.4.228-2.el7.elrepo.x86_64) 7 (Core) [root@localhost ~]# uname -r 3.10.0-1127.13.1.el7.x86_64 # [root@server2 ~]# reboot (重启使设置生效)
其他的选择(补充)
# boot 空间占用清除 [root@localhost ~]# df -h /boot/ Filesystem Size Used Avail Use% Mounted on /dev/vda1 190M 88M 88M 68% /boot [root@localhost ~]# uname -r 4.4.236-1.el7.elrepo.x86_64 [root@localhost boot]# rpm -q kernel kernel-3.10.0....el7.x86_64 kernel-3.10.0....el7.x86_64 [root@localhost boot]# rpm -e kernel-3.10.0....el7.x86_64 [root@localhost ~]# df -h /boot/ Filesystem Size Used Avail Use% Mounted on /dev/vda1 190M 116M 60M 66% /boot [root@localhost ~]# rpm -q kernel-lt kernel-lt-4.4.236-1.el7.elrepo.x86_64
升级内核,解决:在最新的软件需要内核依赖
这篇关于Centos7 升级内核为最新长期维护版 4.4的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享