2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

yum update でLinuxカーネルのバージョンとリリースバージョンのアップデートを除外する

Posted at

yum update でLinuxカーネルのバージョンとリリースバージョンのアップデートを除外する為の設定メモ

yumコマンドのオプションを追加にても、アップデートされないようにすることはできますが、
意図しないアップデートを防ぐためにも、「/etc/yum.conf」を編集したいと思います。

##現在のバージョン確認

Redhat のバージョンを確認するには以下のコマンドを実行します。

$ cat /etc/redhat-release

カーネルのバージョンを確認するには以下のどちらかのコマンドを実行します。

$ cat /proc/version
$ uname -r

Redhatカーネルバージョン値

##/etc/yum.confの編集

# vi /etc/yum.conf

---以下を追記---
exclude=kernel* exclude=redhat-release*

viとしていますが、好みのエディタを使用してください。

##注意事項
redhat-releaseのみの記載で、依存関係上アップデートされないようですが、一般的には両方記載するようです。
exclude=kernel
のみの記載の場合、Redhatのバージョンだけが上がってしまうため、注意願います。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?