`sudo apt-get autoremove package*` 有多危险?

`sudo apt-get autoremove package*` 有多危险?

我正在删除所有以前的 Eclipse 版本根据我读到的答案,所以我使用了sudo apt-get autoremove eclipse*。它说要卸载的文件大约有 40 Mb,所以我同意相信它会在预期的范围内工作。

预期的行为是它会删除应用程序本身及其依赖项。就我而言,它开始删除一些我认为与 Eclipse 无关的linux-headers、包等,这让我很担心。帮忙?python

答案1

一点也不危险。来自apt-get 命令

autoremove (and the auto-remove alias since 1.1)
    autoremove is used to remove packages that were automatically
    installed to satisfy dependencies for other packages and are now no
    longer needed.

相关内容