26

Is it possible to turn "Software updater" off? It pops up on startup every single time offering new (unwanted) updates. I have tried to set "don't check for updates" and all this kind of stuff in Software updater settings. But it still pops up.

It's annoying, could you advice how to get rid of it?

Avinash Raj
  • 78,556
Sebastian
  • 1,188
  • 2
  • 14
  • 29

4 Answers4

30

One of the easiest way I did to overcome from this problem is that you can remove update-notifier

sudo apt-get remove update-notifier

Please note that, this will remove only the graphic way to do system updates.. You can still do your upgrades using commands or Synaptic :)

You can always reply if you get in any trouble.. :)

Saurav Kumar
  • 14,916
  • 2
    This is a bit extreme. Simply making sure that it doesn't autostart should suffice in most cases. – landroni Apr 11 '14 at 10:57
  • @landroni: It was last option for me.. Other things simply failed.. :) – Saurav Kumar Apr 11 '14 at 11:00
  • Thank you, I will do that if previous way would not work. Synaptic will do the work for me. Thank you! – Sebastian Apr 11 '14 at 11:04
  • 7
    Frankly this is the best option. It works, and if you don't need the application, why have it installed at all? Disabling an app you dont plan to use seems silly, just remove it. – triunenature Aug 28 '15 at 21:02
  • 1
    I don't like this answer because the xubuntu-desktop package depends on update-notifier. If you ever apt install xubuntu-desktop you'll get update-notifier right back. – Stephen Ostermiller Oct 30 '17 at 20:13
  • @StephenOstermiller: Sure you can downvote if you don't like anything. It's all about your choice and your requirement.. And of course if you install xubuntu-desktop update-notifier will come by default. But that is a standalone package which you can update/remove/re-install anytime. :P – Saurav Kumar Nov 01 '17 at 10:11
  • 1
    If you want to complete remove all the update GUIs: sudo apt-get remove update-notifier update-manager – Cerin Mar 22 '18 at 18:36
  • 1
    Yes, xubuntu-desktop depends on update-notifier, but that's not a big issue. xubuntu-desktop is simply a catch-all package to pull in the entire Xubuntu bundle. If you don't want the entire bundle (as would be the case if you're removing update-notifier) removing xubuntu-desktop won't break anything. – David C. Feb 08 '19 at 17:05
  • Just because the maintainers add a bunch of other packages to their desktop environment does not in any way mean people are obligated to use them, forbidden from removing them, and/or that their use is required for the desktop environment. This is not a software dependency per se, rather it uses the apt dependency feature set to bring in a commonly used/desired package. Removing it is 100% user choice, and will have no negative impacts on your DE, whether xfce or otherwise. @StephenOstermiller – oemb1905 Aug 19 '21 at 19:21
5

Go to Settings > Session and Startup > App Autostart and uncheck Update Notifier. Also make sure that no other similar entry (like Synaptic) is enabled in that list. Take note that this will likely disable the automatic updating of the data from the package repositories.

landroni
  • 5,941
  • 7
  • 36
  • 58
  • Thank you, I did it. I didn't unchecked it before because it had a synaptic icon, I overlooked it somehow. I hope it will work! Thank you! – Sebastian Apr 11 '14 at 11:02
  • 1
    I couldn't find a "Session and Startup" option in Ubuntu 16.04.6. Hope this answer could be updated. – Nav Oct 03 '19 at 02:37
  • Remember that there's more than one available GUI environment in Linux so they might call it different things. In "xfce" on Ubuntu 18.04.1 it's called Session and Startup and there's a tab Application Autostart with an "Update Notifier" option. It's out there somewhere! – Mike Robinson Mar 13 '20 at 15:25
3

Alternative CLI solution:

sudo crudini --set /etc/xdg/autostart/update-notifier.desktop 'Desktop Entry' Hidden true;

If you need crudini, then: sudo pip install crudini

Jonas Czech
  • 4,017
gavin
  • 174
  • 1
  • 4
0

You can use this command :

sudo bash -c 'echo "Hidden=true" >> /etc/xdg/autostart/update-notifier.desktop'
  • I simply changed Exec=update-notifier to Exec=/dev/null Now we shall wait and see if it starts returning errors. – mchid Jan 23 '23 at 13:08