闲者博客 - 升级 https://bk1314.com/tag/%E5%8D%87%E7%BA%A7/ CentOS yum update 不升级内核版本方法 https://bk1314.com/53.html 2022-03-03T01:39:00+08:00 1.查看操作系统版本[root@ser875814510906 ~]# cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core) 2.执行yum update 进行升级# yum update [root@ser875814510906 ~]# cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core)可以看到系统默认升级到了7.9版本3.如果不想升级内核及系统版本,则在执行 yum update之前在 /etc/yum.conf 的 [main] 后面添加以下配置exclude=kernel* exclude=centos-release*这样,执行 yum update 后[root@ser875814510906 ~]# cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core)还是原来的系统版本4.还要一种直接命令实现不更新内核yum -y upgradeyum -y update:升级所有包同时,也升级软件和系统内核;yum -y upgrade:只升级所有包,不升级软件和系统内核,软件和内核保持原样。[post cid="54" /][post cid="52" /]