わしの Raspberry Pi3 は Raspbian GNU/Linux 9 (stretch)なので、自動更新にはなってないから、unattended-upgrades のパッケージをインストール。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
root@raspberrypi:~# apt install unattended-upgrades パッケージリストを読み込んでいます... 完了 依存関係ツリーを作成しています 状態情報を読み取っています... 完了 提案パッケージ: needrestart 以下のパッケージが新たにインストールされます: unattended-upgrades アップグレード: 0 個、新規インストール: 1 個、削除: 0 個、保留: 0 個。 61.7 kB のアーカイブを取得する必要があります。 この操作後に追加で 252 kB のディスク容量が消費されます。 取得:1 http://ftp.tsukuba.wide.ad.jp/Linux/raspbian/raspbian stretch/main armhf unattended-upgrades all 0.93.1+nmu1 [61.7 kB] 61.7 kB を 1秒 で取得しました (51.1 kB/s) パッケージを事前設定しています ... 以前に未選択のパッケージ unattended-upgrades を選択しています。 (データベースを読み込んでいます ... 現在 137453 個のファイルとディレクトリがイン ストールされています。) .../unattended-upgrades_0.93.1+nmu1_all.deb を展開する準備をしています ... unattended-upgrades (0.93.1+nmu1) を展開しています... systemd (232-25+deb9u13) のトリガを処理しています ... unattended-upgrades (0.93.1+nmu1) を設定しています ... Creating config file /etc/apt/apt.conf.d/20auto-upgrades with new version Creating config file /etc/apt/apt.conf.d/50unattended-upgrades with new version Created symlink /etc/systemd/system/multi-user.target.wants/unattended-upgrades. service → /lib/systemd/system/unattended-upgrades.service. Synchronizing state of unattended-upgrades.service with SysV service script with /lib/systemd/systemd-sysv-install. Executing: /lib/systemd/systemd-sysv-install enable unattended-upgrades man-db (2.7.6.1-2) のトリガを処理しています ... systemd (232-25+deb9u13) のトリガを処理しています ... |
needrestart パッケージが提案パッケージになっとるけど、要るのかなあ?
後は次の記事を参考に設定。
防犯監視カメラだから、深夜に再起動するのはマズいので、昼間に再起動するようにした。
まあ、Raspberry Pi3 だと、数秒で復帰するから、特に問題は無いだろう。
そして、apt-cron をアンインストール
1 2 3 4 5 6 7 8 9 10 11 12 13 |
root@raspberrypi:~# apt remove cron-apt パッケージリストを読み込んでいます... 完了 依存関係ツリーを作成しています 状態情報を読み取っています... 完了 以下のパッケージは「削除」されます: cron-apt アップグレード: 0 個、新規インストール: 0 個、削除: 1 個、保留: 0 個。 この操作後に 171 kB のディスク容量が解放されます。 続行しますか? [Y/n] (データベースを読み込んでいます ... 現在 137490 個のファイルとディレクトリがイン ストールされています。) cron-apt (0.10.0) を削除しています ... man-db (2.7.6.1-2) のトリガを処理しています ... |