RHELのdnfコマンドでバージョンを指定してパッケージをインストールする!

RHELでバージョンを指定してパッケージをインストールします。

RHEL 8でインストール可能なバージョンを表示する!

過去のバージョンを含めて利用可能なパッケージの一覧を表示します。

# dnf --showduplicates search sysstat
Updating Subscription Management repositories.
Last metadata expiration check: 1:45:48 ago on Mon 26 Dec 2022 05:08:54 PM EST.
=============================================================== Name Exactly Matched: sysstat ================================================================
sysstat-11.7.3-2.el8.x86_64 : Collection of performance monitoring tools for Linux
sysstat-11.7.3-5.el8.x86_64 : Collection of performance monitoring tools for Linux
sysstat-11.7.3-6.el8.x86_64 : Collection of performance monitoring tools for Linux
sysstat-11.7.3-7.el8.x86_64 : Collection of performance monitoring tools for Linux

バージョンを指定してパッケージをインストールする!

バージョンを指定してパッケージをインストールします。

# dnf install sysstat-11.7.3-2.el8.x86_64

バージョンを固定する場合は、「--excludepkgs」オプションにパッケージ名を指定します。

# dnf install sysstat-11.7.3-2.el8.x86_64 --excludepkgs=sysstat

/etc/dnf/dnf.confに以下追記しても可能です。

excludepkgs=sysstat

おわりに

特定のバージョンで固定したい場合のインストール手順をまとめてみました。

参考情報

関連記事

関連書籍(Amazon)

N/A