I am trying to disable automatic update checks on Kubuntu 18.04. I have unticked the option to check for updates daily by using Settings -> Configure Software Sources -> Updates in muon
but the system keeps checking for updates on every startup.
The contents of /etc/apt/apt.conf.d/10periodic are
APT::Periodic::Update-Package-Lists "0";
APT::Periodic::Download-Upgradeable-Packages "0";
APT::Periodic::AutocleanInterval "0";
APT::Periodic::Unattended-Upgrade "0";
Is there anything else that has to be done in order to stop those automatic checks completely?
To disable automatic upgrades in Kubuntu 18.04, run:
and when prompted Automatically download and install stable updates?, choose "No" and follow the remaining prompts. To see the status of automatic upgrades, run:
The value produced (an integer) means how often to update automatically, in days. A zero value means disabled.
At my 18.04.1 installation there was no file
/etc/apt/apt.conf.d/10periodic
.After a short search I found:
There I could disable my auto-updates. Maybe you could also have a look there for your solution.
I just zero-ed the values; so my content of
/etc/apt/apt.conf.d/20auto-upgrades
is now:Changing those values in periodic only seem to disable the automatic update of package lists.
To disable the annoying update-manager popup (also called update-notifier), I changed the file
/etc/apt/apt.conf.d/99update-notifier
from this:to this content:
Finally, no more annoying notifications aka. popups.