Luca Borrione Asked: 2012-09-30 05:44:24 +0800 CST2012-09-30 05:44:24 +0800 CST 2012-09-30 05:44:24 +0800 CST 如何获取 apt-get autoremove 中存在的包列表 772 我知道我有一些包准备好在我运行时删除apt-get autoremove,但我只想知道它们是什么,而不删除它们。我如何列出将要删除的内容而不删除它们?或者,如何运行上述命令并强制它提示我? apt 1 个回答 Voted Best Answer user9517 2012-09-30T06:08:56+08:002012-09-30T06:08:56+08:00 该autoremove函数列出要删除的包,并在实际执行操作之前请求允许继续。如果你只是想看看会发生什么 您可以使用-s或--simulate...开关不执行任何操作 -s, --simulate, --just-print, --dry-run, --recon, --no-act No action; perform a simulation of events that would occur but do not actually change the system. 所以 apt-get -s autoremove 应该做你想做的。有一个--assume-no开关可用于强制no询问任何问题,例如 apt-get autoremove --assume-no 该autoremove函数仅删除不再需要的包,因此无论如何您都应该安全地运行它。 自动删除 autoremove is used to remove packages that were automatically installed to satisfy dependencies for other packages and are now no longer needed.
该
autoremove
函数列出要删除的包,并在实际执行操作之前请求允许继续。如果你只是想看看会发生什么您可以使用
-s
或--simulate...
开关不执行任何操作所以
应该做你想做的。有一个
--assume-no
开关可用于强制no
询问任何问题,例如该
autoremove
函数仅删除不再需要的包,因此无论如何您都应该安全地运行它。