Skip to content Skip to main navigation Skip to footer

CentOS 如何阻止yum在update的时候更新内核

在centos 或者rhel系统,如果你想更新系统上的软件包的时候,我们都会使用yum update,这个命令默认情况下也会更新系统给的内核文件,那么如何不让yum update 命令页升级内核文件呢?
linux操作系统
首先编辑”/etc/yum.conf” 文件,添加下面的内容:

exclude=kernel*
 

保存并退出配置文件。
尝试使用yum -y update 命令来更新软件包.

yum -y update
 

如果想不更新配置文件并不更新kernel 文件,可以使用“-x” 选项,输入下面的命令:

yum -x 'kernel*' update
 
0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.