Avoiding Bloat in Debian 5.0 Onwards


Index

Debian 5.0 (Lenny) onwards sets apt-get to install "recommends" packages by default, which can result in hundreds of MB of unnecessary software being installed.

This annoying behaviour can be avoided by creating the file
/etc/apt/apt.conf.d/01norecommend
containing the following lines:
APT::Install-Recommends "0";
APT::Install-Suggests "0";
This is best done as early as possible in a new installation. Running
apt-get autoremove
should then remove any "recommends" packages that were installed previously. It will prompt with a list of packages to be removed. Check the list and if there are any you want to keep, install them manually with apt-get.

If you really need a minimal system read this.



Index       Contact

Last updated January 15 2016