Debian: Difference between revisions

From HoerupWiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
In debian install-recommends defaults to "true",
In debian install-recommends defaults to "true",
which means that you will get all sorts of unnecessary  extra packages when installing software  
which means that you will get all sorts of unnecessary  extra packages when installing software  
Line 8: Line 7:


<code>APT::Install-Recommends "false";</code>
<code>APT::Install-Recommends "false";</code>
=Debian 6 & postgresql=

Revision as of 12:00, 15 February 2011

In debian install-recommends defaults to "true", which means that you will get all sorts of unnecessary extra packages when installing software

Check the settins with apt-config dump

To circumvent this, put this in a file in /etc/apt/apt.conf.d/

APT::Install-Recommends "false";

Debian 6 & postgresql