1

I do apt-get update and apt-get dist-upgrade manually almost every day and I am happy doing it manually. I don't need the Ubuntu update manager and want not to be annoyed by it ever. This answer suggests it can be removed but it seems that the things have changed since it was written as now

sudo apt-get remove update-manager

as well as

sudo apt-get remove update-notifier

result in

The following packages will be REMOVED:
  ubuntu-desktop* ubuntu-release-upgrader-gtk* update-manager* update-notifier*

response. Needless to say I don't want to remove the whole Ubuntu Desktop.

So what is the correct way?

Ivan
  • 58,745

1 Answers1

4

Um, open software and updates, choose the updates tab, and change Automatically check for updates to never?

To stop the notifications themselves, start dconf-editor

Navigate to com->ubuntu->undate-notifier and check the box for 'no-show-notifications'

Or execute

gsettings set com.ubuntu.update-notifier no-show-notifications true

Charles Green
  • 21,859