删除 20.04.2 LTS 上的更新软件通知

删除 20.04.2 LTS 上的更新软件通知

弹出“此计算机有可用的更新软件。您是否要立即安装”这是图片

  1. 我已将更新程序设置为从不
  2. 我已禁用通知
  3. 我已经尝试过“pkill update-notifier”
  4. sudo systemctl disable apt-update-daily.service 并将计时器禁用为“0”

有人可以帮忙彻底删除通知吗?

答案1

警告:以下答案会禁用更新弹出窗口,这可能会导致系统的安全级别降低。请确认后再继续。

要在 Ubuntu 20.04 LTS 上禁用更新通知弹出窗口,请使用以下命令:

# disable cron jobs for Update Notifier
sudo chmod -x /etc/cron.daily/update-notifier-common
sudo chmod -x /etc/cron.weekly/update-notifier-common

# disable graphical Update Notifier application
mkdir -p ~/.config/autostart/
cp /etc/xdg/autostart/update-notifier.desktop ~/.config/autostart/

grep -q "^X-$XDG_CURRENT_DESKTOP-Autostart-enabled" ~/.config/autostart/update-notifier.desktop && sed -i "s/X-$XDG_CURRENT_DESKTOP-Autostart-enabled=true/X-$XDG_CURRENT_DESKTOP-Autostart-enabled=false/" ~/.config/autostart/update-notifier.desktop || echo "X-$XDG_CURRENT_DESKTOP-Autostart-enabled=false" >> ~/.config/autostart/update-notifier.desktop

然后重新启动。

要在 Ubuntu 21.04 上禁用更新通知弹出窗口,请使用以下命令:

# disable cron jobs for Update Notifier
sudo systemctl disable update-notifier-download.timer
sudo systemctl disable update-notifier-motd.timer

# disable graphical Update Notifier application
mkdir -p ~/.config/autostart/
cp /etc/xdg/autostart/update-notifier.desktop ~/.config/autostart/

grep -q "^X-$XDG_CURRENT_DESKTOP-Autostart-enabled" ~/.config/autostart/update-notifier.desktop && sed -i "s/X-$XDG_CURRENT_DESKTOP-Autostart-enabled=true/X-$XDG_CURRENT_DESKTOP-Autostart-enabled=false/" ~/.config/autostart/update-notifier.desktop || echo "X-$XDG_CURRENT_DESKTOP-Autostart-enabled=false" >> ~/.config/autostart/update-notifier.desktop

然后重新启动。

相关内容