How do I make Update Manager stop opening automatically?
This may work for you. I haven't verified if it works in GNOME.
- Open the Software Sources application.
- Select the "Updates" tab.
- For the "Automatically check for updates" option, select Never.
After this, you will have to open the Update Manager application manually.
I found this post with the following instruction:
open
gconf-editor
, browse down toApps
->Update Notifier
, and uncheck theauto_launch
option
OK, try this one. It's similar to the other answer but disables it instead of deleting it entirely. It might be safer for you to open the file in an editor and change the line by hand instead of the sed
command that post uses.
The procedure, using an editor:
- Open a terminal
- Move to the autostart directory (
cd /etc/xdg/autostart
) and list the files there (ls
). - Find the startup program you want to run (in our case
update-notifier.desktop
) and open it in an editor (gksudo gedit update-notifier.desktop
). Enter your password if necessary. - Be careful not to change anything except this line. Find this line:
NoDisplay=true
and change it to:NoDisplay=false
- Save the file and exit.
- Reboot to make sure it worked.
In Precise, it is done using dconf now rather than gconf.
Install
dconf-tools
$ sudo apt-get install dconf-tools
run dconf-editor and navigate to com > ubuntu > update-notifier.
Tick
no-show-notifications
And here's how to do it from the command line:
dconf write /com/ubuntu/update-notifier/no-show-notifications true