シャットダウン前にアップデートを自動的にインストールする方法は?


15

Windows 7は、シャットダウン前に更新プログラムを自動的にインストールします。Xubuntuで同じ効果を得ることができますか?

Xubuntuを友人のマシンにインストールして、セキュリティ更新プログラムがインストールされていることを確認したいのですが、彼はコンピュータに精通していないため、更新通知で常に悩まされたくありません。

回答:


12

パッケージがunattended-upgradesインストールされていることを確認してから、次のオプションを構成します/etc/apt/apt.conf.d/50unattended-upgrades

// Automatically upgrade packages from these (origin:archive) pairs
Unattended-Upgrade::Allowed-Origins {
    "${distro_id}:${distro_codename}";
    "${distro_id}:${distro_codename}-security";
    "${distro_id}:${distro_codename}-updates";
    "${distro_id}:${distro_codename}-backports";
    "Canonical:${distro_codename}";
};

// This option allows you to control if on a unclean dpkg exit
// unattended-upgrades will automatically run 
//   dpkg --force-confold --configure -a
// The default is true, to ensure updates keep getting installed
Unattended-Upgrade::AutoFixInterruptedDpkg "true";

// Split the upgrade into the smallest possible chunks so that
// they can be interrupted with SIGUSR1. This makes the upgrade
// a bit slower but it has the benefit that shutdown while a upgrade
// is running is possible (with a small delay)
Unattended-Upgrade::MinimalSteps "true";

// Install all unattended-upgrades when the machine is shuting down
// instead of doing it in the background while the machine is running
// This will (obviously) make shutdown slower
Unattended-Upgrade::InstallOnShutdown "true";

// Do automatic removal of new unused dependencies after the upgrade
// (equivalent to apt-get autoremove)
Unattended-Upgrade::Remove-Unused-Dependencies "true";

10periodicおよび20 auto-upgradesファイルについてはどうですか?それらは存在する必要がありますか?どのパラメーターを含める必要がありますか?それらも変更する必要がありますか?
シリコ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.