有没有办法永久地将内核排除在更新之外?

有没有办法永久地将内核排除在更新之外?

我正在使用 Fedora,想知道是否有某种方法可以在运行时排除内核更新yum update,直到我特别想要更新内核。

我之所以担心这一点,是因为有时需要大量额外的研究来寻找某些程序的补丁,并花费额外的时间重新编译它们以在新内核上工作。我特意将 VMWare 作为一个例子。

我想知道是否有某种方法可以yum update不更新内核,而只在它执行例程时通知我有新内核可用,以便我可以决定将其推迟到更方便的时间。或者这种想法可能会导致其他问题吗?

答案1

尝试这个:

yum --exclude=kernel\* update

或者:

yum -x 'kernel*' update

yum手册页:

-x, --exclude=package
        Exclude a specific package by name or glob from updates on all
        repositories. Configuration Option: exclude

如果你想保持这种持久性,请添加exclude=kernel*一行/etc/yum.conf

[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
installonly_limit=5
bugtracker_url=http://bugs.centos.org/set_project.php?project_id=16&ref=http://b
distroverpkg=centos-release
exclude=kernel*

当您想更新时,请使用--disableexcludes选项覆盖以下配置yum.conf

yum --disableexcludes=main update

相关内容