Skip to content

Instantly share code, notes, and snippets.

@valentineus
Created June 1, 2018 03:33
Show Gist options
  • Save valentineus/97eaf8dbcc3d4829052535f45594aea8 to your computer and use it in GitHub Desktop.
Save valentineus/97eaf8dbcc3d4829052535f45594aea8 to your computer and use it in GitHub Desktop.
Disabling recommended packages on systems GNU/Debian and Ubuntu.
# /etc/apt/apt.conf.d/99recommended
# Disable recommended packages
APT::AutoRemove::RecommendsImportant "false";
APT::AutoRemove::SuggestsImportant "false";
APT::Get::Install-Recommends "false";
APT::Get::Install-Suggests "false";
APT::Install-Recommends "false";
APT::Install-Suggests "false";
@frkd-dev
Copy link

According to the apt-get documentation, there are no APT::Get::Install-* options, only APT::Install-*.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment