有沒有辦法永久地將核心排除在更新之外?

有沒有辦法永久地將核心排除在更新之外?

我正在使用 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

相關內容