`apt-get update --dry-run` 命令不再起作用

`apt-get update --dry-run` 命令不再起作用

在旧系统上,该命令apt-get update --dry-run确实有效,并且对于检查真实命令是否有效非常有用。

对于较新的版本,我们拥有:

$ apt-get update --dry-run
E: Command line option --dry-run is not understood in combination with the other options

还有其他办法吗?

注意:如果有人敢问“你为什么要这样做?”,我会回答“为什么这不再可能了?”!:)

答案1

我刚刚在 wheezy 系统上测试了它的行为apt-get update --dry-run。如果我从 /var/lib/apt/lists 中删除一个列表文件,apt-get update --dry-run则会下载丢失的文件。

这表明我所做的apt-get update --dry-run与简单地所做的是相同的apt-get update

--dry-run选项可能不再有效,因为它让人们误以为它不会修改系统,而事实上有证据表明它确实修改了系统。

相关内容