March 28, 2008

Apt Installs Recommended Packages by Default

I only recently noticed that when I use apt-get install, it not only installs my desired package, but also every package that the package recommends. To halt this behaviour I had to add these lines to the /etc/apt/apt.conf file:

APT
{
Install-Recommends "false";
Install-Suggests "false";
};

No comments: