インストールとアップデート
EPEL のリポジトリをインストール
:~# dnf -y install epel-release
EPEL 関係、無効化。(使うときには、--enablerepo= を付ける)
:~# dnf config-manager --disable epel
有効化されているリポジトリの一覧を確認するなら。
:~# dnf repolist
有効および無効なリポジトリーの両方を一覧表示するなら。
:~# dnf repolist all
dnf アップデート
:~# dnf -y update
dnf-automatic インストール。
:~# dnf -y install dnf-automatic
dnf-automatic-install 自動起動有効+起動。
:~# systemctl enable --now dnf-automatic-install.timer
nkf コマンドインストール。
:~# dnf --enablerepo=epel install nkf
jq コマンドインストール。(インストール済みでした)
:~# dnf install jq
現在使用中のカーネルバージョンを確認する。
:~# uname -r
インストール済みを確認する。
:~# dnf repoquery --installonly
カーネルがアップデートされていると思うので再起動する。
:~# reboot