I want to install a package (DigiKam), but it has a lot of dependencies. If I decide I no longer need this software and uninstall it, will the now unnessary dependencies be removed?
If not, how can I do it manually?
I want to install a package (DigiKam), but it has a lot of dependencies. If I decide I no longer need this software and uninstall it, will the now unnessary dependencies be removed?
If not, how can I do it manually?
You can use the command
apt-get autoremove
. It will remove packages that are installed as automatic dependencies, but are not depended anymore.apt-get
has a flag--auto-remove
that can be used to automatically remove the automatically installed packages when removing a manually installed package:Certain other tools are also capable of doing this, for example
aptitude
will automatically suggest that you remove the packages that have been orphaned.The automatically installed packages tracking is built in to apt so the tracking should work no matter which tool you use to install the packages.
deborphan
lists packages which are not used or do not depend. So you can safely uninstall them. I tend to usepurge
as option ofaptitude
because it removes also config files and other stuff.The Computer Janitor, in the system menu can do this too.
I use ubuntu tweak, it has a very effecient app cleaning utility that has never removed more then it should.
Only run this.
Install BleachBit from Software Center. When you clean ur system using it, BleachBit will automatically run this command to clean the apt cache.
I had the same problem. Here is what I did:
This command will provide the name of dependencies. E.g. my system had
chromium-browser-l10n
.Then enter the following command
It will remove the dependencies completely from your system