Created
June 1, 2018 03:33
-
-
Save valentineus/97eaf8dbcc3d4829052535f45594aea8 to your computer and use it in GitHub Desktop.
Disabling recommended packages on systems GNU/Debian and Ubuntu.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /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"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
According to the apt-get documentation, there are no
APT::Get::Install-*
options, onlyAPT::Install-*
.