Difference between revisions of "Debian"

From HoerupWiki
Jump to: navigation, search
 
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 14: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