Apt
如何獲取 apt-get autoremove 中存在的軟體包列表
我知道如果我執行,我已經準備好刪除一些包
apt-get autoremove
,但我只想知道它們是哪些,而不刪除它們。如何在不刪除它們的情況下列出將要刪除的內容?或者,我如何執行上述命令並強制它提示我?
該
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.