99.ナレッジ-dnf関連

よく使うDNF関連コマンド

# インストール済みのパッケージを一覧表示する。
dnf list --installed

# インストール済みのパッケージを削除する
dnf remove <パッケージ名>

# リポジトリーの一覧表示
dnf repolist
 all [有効および無効]
 -v  [詳細表示]

# リポジトリーの追加 例:dnf install https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
dnf install [アドレス]

# リポジトリーの無効
dnf config-manager --disable [repoID]

# リポジトリーの有効
dnf config-manager --enable [repoID]