What i like to do about updating my system (no matter security or generic) is simply using apt command (sudo apt update/upgrade) and like to disable any kind of automatic query or notification for update. Did some research and executed some commands:
sudo dpkg -P unattended-upgrades
content of this file
~$ cat /etc/apt/apt.conf.d/10periodic
APT::Periodic::Enable "0";
APT::Periodic::Update-Package-Lists "0";
APT::Periodic::Download-Upgradeable-Packages "0";
APT::Periodic::AutocleanInterval "0";
my linux version:
~$ uname -a
Linux deb 6.1.0-22-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.94-1 (2024-06-21) x86_64 GNU/Linux
still getting notification in system tray from discover most of time about security update and sometimes vscode. I want to disable all no matter how important they are.
anticking sources from discover app settings cause apt command to fail and misbehave. so dont like that as solution.
any idea?
sudo dpkg -P unattended-upgrades
content of this file
~$ cat /etc/apt/apt.conf.d/10periodic
APT::Periodic::Enable "0";
APT::Periodic::Update-Package-Lists "0";
APT::Periodic::Download-Upgradeable-Packages "0";
APT::Periodic::AutocleanInterval "0";
my linux version:
~$ uname -a
Linux deb 6.1.0-22-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.94-1 (2024-06-21) x86_64 GNU/Linux
still getting notification in system tray from discover most of time about security update and sometimes vscode. I want to disable all no matter how important they are.
anticking sources from discover app settings cause apt command to fail and misbehave. so dont like that as solution.
any idea?
Statistics: Posted by delphi_coder — 2024-07-06 09:35 — Replies 1 — Views 19