Ubuntu 18.04每次我运行apt-get upgrade循环时,“软件更新程序”GUI都会在完成后弹出。它似乎没有给流程添加任何东西,而且很烦人,所以我希望它停止存在。
我怎样才能让它消失?我找不到任何设置。
发布于 2020-07-14 09:54:57
尝试两种可能的选择:

gsettings set com.ubuntu.update-notifier no-show-notifications true。您还可以使用非常有用的dconf-editor通过GUI设置它(如果没有它,可以安装它)。发布于 2020-07-09 00:18:41
给出的答案是,取消检查“启动应用程序”下的Update是我要使用的方法。我得检查一下“隐藏”才能看到它..。
发布于 2020-07-09 05:26:40
删除更新通知程序
sudo apt-get remove update-notifier请注意,这将只删除进行系统更新的图形方式。您仍然可以使用命令或Synaptic进行升级。
要禁用/删除更新管理器:
打开终端(Ctrl+Alt+T)并运行以下命令,禁用Ubuntu系统上的Update自动通知:
gconftool -s --type bool /apps/update-notifier/auto_launch false若要重新启用Update自动通知,请运行以下命令:
gconftool -s --type bool /apps/update-notifier/auto_launch true如果希望完全删除Update包,请运行以下命令:
sudo apt-get remove update-manager要再次恢复它,请运行:
sudo apt-get install update-manager卸载更新管理器,以从终端上的Ubuntu执行中删除更新管理器包本身:
sudo apt-get remove update-manager卸载更新管理器及其依赖包
删除Ubuntu中不再需要的更新管理程序包和任何其他依赖程序包。
sudo apt-get autoremove update-manager清除更新管理器
如果您还想从Ubuntu中删除Ubuntu的配置和/或更新管理器的数据文件,那么这将有效:
sudo apt-get purge update-manager要从Ubuntu中删除Ubuntu中的Ubuntu的配置和/或更新管理器的数据文件及其依赖项,请执行:
sudo apt-get autoremove --purge update-manager请注意,不建议禁用Ubuntu更新管理器。定期更新Ubuntu系统是非常重要的。
https://askubuntu.com/questions/1237825
复制相似问题