以前投稿した内容の順番で設定できなかったので更新です。

1. 以下のコマンドを実行しDNF Automaticをインストール

dnf -y install dnf-automatic

2. 以下のコマンドを実行し設定ファイルを開く

vi /etc/dnf/automatic.conf

3. 自動更新にしたいため、apply_updatesの設定をyesに変更

4. 以下のコマンドを実行し自動インストールを設定

systemctl enable --now dnf-automatic-install.timer

自動インストール以外の場合は上記の「dnf-automatic-install.timer」部分を以下に変更

No置換文字列説明
1dnf-automatic-download.timer利用可能な更新をダウンロード
2dnf-automatic-install.timer利用可能な更新をダウンロードしてインストール
3dnf-automatic-notifyonly.timer利用可能な更新を報告
4dnf-automatic.timer利用可能な更新プログラムをダウンロード、ダウンロードしてインストール、または報告

5. 以下のコマンドを実行し設定ファイルを開く

vi /etc/systemd/system/timers.target.wants/dnf-automatic-install.timer

6. 自動更新を行う時間を設定

7. 以下のコマンドを実行して有効化と開始

systemctl daemon-reload
systemctl enable --now dnf-automatic-install.timer
systemctl start dnf-automatic-install.timer

投稿者 つー