在 20.04 LTS 中禁用分阶段更新?

在 20.04 LTS 中禁用分阶段更新?

在 Ubuntu 20.04 LTS 中,软件更新程序显示没有可用的更新,但apt list --upgradable显示可以升级的软件包。(我运行该命令是因为我已经安装了一些东西,然后 apt 说我应该这样做。)更新管理器不显示所有更新说更新可以分阶段进行,并且可以禁用它们。显然,有两个首选项,Update-Manager::Never-Include-Phased-Updates "True";APT::Get::Never-Include-Phased-Updates "True";。这对 Ubuntu 20.04 有用吗?它会解决问题吗?

$ apt list --upgradable
Listing... Done
update-notifier-common/focal-updates,focal-updates 3.192.30.6 all [upgradable from: 3.192.30.5]
update-notifier/focal-updates 3.192.30.6 amd64 [upgradable from: 3.192.30.5]

答案1

添加此字符串:

Update-Manager::Always-Include-Phased-Updates;
APT::Get::Always-Include-Phased-Updates;

或者

Update-Manager::Never-Include-Phased-Updates;

(不需要 True/False 布尔值)

您应该能够将该行添加到中的任何配置文件中/etc/apt/apt.conf.d/。或者创建您自己的:/etc/apt/apt.conf.d/99-Phased-Updates

来源:

相关内容