I want to use apt-get autoremove
to remove liba
for instance, but I'm not sure whether it is smart enough to preserve other dependencies. For instance, if liba
depends on libb
, while libc
also depends on libb
, will
sudo apt-get autoremove liba
remove libb
or not? Thanks in advance.
apt-get autoremove liba
to removeliba
and any other packages which are no longer used and are set to be removed automatically when theautoremove
command is run. – dobey May 12 '13 at 00:21