以前投稿した内容の順番で設定できなかったので更新です。
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 | 置換文字列 | 説明 |
---|---|---|
1 | dnf-automatic-download.timer | 利用可能な更新をダウンロード |
2 | dnf-automatic-install.timer | 利用可能な更新をダウンロードしてインストール |
3 | dnf-automatic-notifyonly.timer | 利用可能な更新を報告 |
4 | dnf-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