我之前在 Ubuntu 服务器上设置过无人值守升级,使用官方指南。
我现在正尝试在 Debian/Raspbian 系统上进行相同的设置;该指南在这里。
我的问题仅与20auto-upgrades
文件有关。
Ubuntu 指南指出它应该包含:
APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Download-Upgradeable-Packages "1";
APT::Periodic::AutocleanInterval "7";
APT::Periodic::Unattended-Upgrade "1";
但是 Debian 指南只有第一行和最后一行。我理解 AutocleanInterval。
Download-Upgradeable-Packages 有什么用?更重要的是:为什么 Debian 指南不需要这个?
答案1
Debian 文档中进一步写道:
// Do "apt-get upgrade --download-only" every n-days (0=disable)
APT::Periodic::Download-Upgradeable-Packages "1";
来自man apt-get
:
-d, --download-only
Download only; package files are only retrieved, not unpacked or installed.
我认为这意味着可更新包将在实际升级运行时单独下载。