apt - How can I stop the updates notifier box from appearing? - Ask Ubuntu


this question has answer here:

note future users come across question

this question has been tagged possible duplicate of

that question whole process of having os apt-get update , apt-get upgrade packages automatically - not popup manager window.
question duplicate of this:

it turns out update manager popup cannot managed through apt's configuration files, acts independent daemon , needs managed separately.


every morning when log install of ubuntu 16.04.1 this:

enter image description here

i don't want box appear, rather handle updating process manually.

i have following configuration:

file: /etc/apt/conf.d/10periodic

apt::periodic::update-package-lists "0"; apt::periodic::download-upgradeable-packages "0"; apt::periodic::autocleaninterval "0"; // try , turn off autoupating apt::periodic::enable "0"; 

file: /etc/apt/conf.d/20auto-upgrades

apt::periodic::update-package-lists "0"; apt::periodic::unattended-upgrade "0"; 

my attempt discover responsible firing automatic update system

man apt.conf states:

periodic , archives options
apt::periodic , apt::archives groups of options configure behavior of
apt periodic updates, done /etc/cron.daily/apt script.
see top of script brief documentation of these options.

it looks has been replaced /etc/cron.daily/apt-compat mixes times abit everyones ubuntu doesn't try update @ once calls:

/usr/lib/apt/apt.systemd.daily 

/usr/lib/apt/apt.systemd.daily shell script starts comment:

this file understands following apt configuration variables:
values here default.
create /etc/apt/apt.conf.d/10periodic file set preference.

so following advice entered this

    // try , turn off autoupating     apt::periodic::enable "0"; 

into /etc/apt/apt.conf.d/10periodic can see config listing above. yet still getting notification...

possible solutions can think of

  • the comment // try , turn off autoupating may causing parse error of config file, causing apt ignore entire file?
  • unlinking or commenting out /etc/cron.daily/apt-compat ?

how can disable update notifier box?


Comments

Popular posts from this blog

download - Firefox cannot save files (most of the time), how to solve? - Super User

windows - "-2146893807 NTE_NOT_FOUND" when repair certificate store - Super User

sql server - "Configuration file does not exist", Event ID 274 - Super User