|
|
|
|
|
by eingaeKaiy8ujie
1795 days ago
|
|
Debian stable is a great choice for a system where you need stability and security. For regular desktop usage though, Debian Sid (unstable) may be better because you get newer software. There is only one issue I had with Debian: I don't like/understand how it's package manager handles unneeded software. For example: 1. I installed Debian with the Gnome interface. 2. Decided to try KDE, installed it alongside Gnome. 3. Deleted KDE. But then there still were lots of KDE-related packages left. I tried `apt autoremove` and some other stuff, but no matter what I couldn't figure out how to easily remove all unneeded packages and return to the previous state. |
|
This is likely because by default Recommends and Suggests both prevent autoremovals and there are probably some circular depends/recommends/suggests loops preventing removing things. The APT::AutoRemove::RecommendsImportant and APT::AutoRemove::SuggestsImportant options can be used to disable this behaviour, so you could try the Suggests one first. Adding the Recommends one would autoremove lots of other stuff too though.
Another thing you could do next time is list all packages (apt list) before and after, then diff the lists to see what was added/removed/upgraded and manually revert that.