在我的KIOSK中我有Ubuntu 13.10。
如何通过命令行从 Ubuntu 13.10 中完全删除/暂停/列入黑名单/隐藏/禁用以下弹出窗口?(即使使用 GUI,当我单击设置并输入密码时,它仍然会失败并不断重复)
- 这个装置运行在一条繁忙的铁路上,每天几乎每个小时,乘客都会经过这个非常繁忙的地方,我都会弹出这个奇怪的“软件更新”窗口,即使我不想要它
请问有人建议如何删除它以停止打扰吗?我尝试了以下方法,但都不起作用:
root@touch:~# vim /etc/default/grub
add GRUB_RECORDFAIL_TIMEOUT=0
root@touch:~# vim /etc/default/apport
put 0
root@touch:~# sudo sed -i 's/NoDisplay=true/NoDisplay=false/g' /etc/xdg/autostart/*.desktop
root@touch:~#
答案1
通过输入以下内容安装 dconf-editor:
sudo apt-get install dconf-editor
`现在使用以下命令打开它:
sudo dconf-editor
- 转到
com->ubuntu->update-notifer-> no-show-notifications
并启用它
。
您可以通过输入以下命令使用命令行执行相同操作:dconf write /com/ubuntu/update-notifier/no-show-notifations true