How to suppress the Ubuntu software update notifier popup in Ubuntu 14.04?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
2
down vote

favorite












There is no operator and no keyboard connected on this self-service kiosk equipment, and we do not want any popups.



software update notifier popup







share|improve this question


























    up vote
    2
    down vote

    favorite












    There is no operator and no keyboard connected on this self-service kiosk equipment, and we do not want any popups.



    software update notifier popup







    share|improve this question
























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      There is no operator and no keyboard connected on this self-service kiosk equipment, and we do not want any popups.



      software update notifier popup







      share|improve this question














      There is no operator and no keyboard connected on this self-service kiosk equipment, and we do not want any popups.



      software update notifier popup









      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 30 at 21:15









      stumblebee

      2,3083922




      2,3083922










      asked Apr 30 at 20:58









      G. Shankar

      111




      111




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          The screenshot you provided, click the [Settings...] button, it has options to never check for updates there.



          To do this in the terminal you need to find the files that are used for this, probably in cron somewhere. I just ran a little test and found these two files:



          /etc/apt/apt.conf.d/20auto-upgrades & /etc/apt/apt.conf.d/10periodic



          I changed my settings in the GUI to Never and checked what these files were altered to as a result:



          cat /etc/apt/apt.conf.d/20auto-upgrades`
          APT::Periodic::Update-Package-Lists "0";
          APT::Periodic::Download-Upgradeable-Packages "0";
          APT::Periodic::AutocleanInterval "0";
          APT::Periodic::Unattended-Upgrade "1";

          cat /etc/apt/apt.conf.d/10periodic
          APT::Periodic::Update-Package-Lists "0";
          APT::Periodic::Download-Upgradeable-Packages "0";
          APT::Periodic::AutocleanInterval "0";
          APT::Periodic::Unattended-Upgrade "1";


          Update-Package-Lists Becomes 14 when you set it to update fortnightly.



          Change your files to match and this should work for you.






          share|improve this answer






















          • Thanks, we will try that. Is there a way to remotely make the same setting thru ssh session? We have 70+ units in the field, where this setting needs to be updated.
            – G. Shankar
            May 1 at 14:51










          • Hi, I ran some tests on my machine and found the cron jobs that seem to be responsible for the update notifier gui so you can update this setting using SSH. I updated my answer with the details, let me know how you get on please?
            – Noki
            May 1 at 20:03










          • P.S I don't know what the Unattended-Upgrade flag does.
            – Noki
            May 1 at 20:07










          • wiki.debian.org/UnattendedUpgrades it does this.
            – Noki
            May 1 at 20:21






          • 1




            Thank you so much! Your suggestions are very helpful. We will update the settings and check it.
            – G. Shankar
            May 2 at 14:09










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "89"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );








           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1030314%2fhow-to-suppress-the-ubuntu-software-update-notifier-popup-in-ubuntu-14-04%23new-answer', 'question_page');

          );

          Post as a guest






























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          The screenshot you provided, click the [Settings...] button, it has options to never check for updates there.



          To do this in the terminal you need to find the files that are used for this, probably in cron somewhere. I just ran a little test and found these two files:



          /etc/apt/apt.conf.d/20auto-upgrades & /etc/apt/apt.conf.d/10periodic



          I changed my settings in the GUI to Never and checked what these files were altered to as a result:



          cat /etc/apt/apt.conf.d/20auto-upgrades`
          APT::Periodic::Update-Package-Lists "0";
          APT::Periodic::Download-Upgradeable-Packages "0";
          APT::Periodic::AutocleanInterval "0";
          APT::Periodic::Unattended-Upgrade "1";

          cat /etc/apt/apt.conf.d/10periodic
          APT::Periodic::Update-Package-Lists "0";
          APT::Periodic::Download-Upgradeable-Packages "0";
          APT::Periodic::AutocleanInterval "0";
          APT::Periodic::Unattended-Upgrade "1";


          Update-Package-Lists Becomes 14 when you set it to update fortnightly.



          Change your files to match and this should work for you.






          share|improve this answer






















          • Thanks, we will try that. Is there a way to remotely make the same setting thru ssh session? We have 70+ units in the field, where this setting needs to be updated.
            – G. Shankar
            May 1 at 14:51










          • Hi, I ran some tests on my machine and found the cron jobs that seem to be responsible for the update notifier gui so you can update this setting using SSH. I updated my answer with the details, let me know how you get on please?
            – Noki
            May 1 at 20:03










          • P.S I don't know what the Unattended-Upgrade flag does.
            – Noki
            May 1 at 20:07










          • wiki.debian.org/UnattendedUpgrades it does this.
            – Noki
            May 1 at 20:21






          • 1




            Thank you so much! Your suggestions are very helpful. We will update the settings and check it.
            – G. Shankar
            May 2 at 14:09














          up vote
          0
          down vote













          The screenshot you provided, click the [Settings...] button, it has options to never check for updates there.



          To do this in the terminal you need to find the files that are used for this, probably in cron somewhere. I just ran a little test and found these two files:



          /etc/apt/apt.conf.d/20auto-upgrades & /etc/apt/apt.conf.d/10periodic



          I changed my settings in the GUI to Never and checked what these files were altered to as a result:



          cat /etc/apt/apt.conf.d/20auto-upgrades`
          APT::Periodic::Update-Package-Lists "0";
          APT::Periodic::Download-Upgradeable-Packages "0";
          APT::Periodic::AutocleanInterval "0";
          APT::Periodic::Unattended-Upgrade "1";

          cat /etc/apt/apt.conf.d/10periodic
          APT::Periodic::Update-Package-Lists "0";
          APT::Periodic::Download-Upgradeable-Packages "0";
          APT::Periodic::AutocleanInterval "0";
          APT::Periodic::Unattended-Upgrade "1";


          Update-Package-Lists Becomes 14 when you set it to update fortnightly.



          Change your files to match and this should work for you.






          share|improve this answer






















          • Thanks, we will try that. Is there a way to remotely make the same setting thru ssh session? We have 70+ units in the field, where this setting needs to be updated.
            – G. Shankar
            May 1 at 14:51










          • Hi, I ran some tests on my machine and found the cron jobs that seem to be responsible for the update notifier gui so you can update this setting using SSH. I updated my answer with the details, let me know how you get on please?
            – Noki
            May 1 at 20:03










          • P.S I don't know what the Unattended-Upgrade flag does.
            – Noki
            May 1 at 20:07










          • wiki.debian.org/UnattendedUpgrades it does this.
            – Noki
            May 1 at 20:21






          • 1




            Thank you so much! Your suggestions are very helpful. We will update the settings and check it.
            – G. Shankar
            May 2 at 14:09












          up vote
          0
          down vote










          up vote
          0
          down vote









          The screenshot you provided, click the [Settings...] button, it has options to never check for updates there.



          To do this in the terminal you need to find the files that are used for this, probably in cron somewhere. I just ran a little test and found these two files:



          /etc/apt/apt.conf.d/20auto-upgrades & /etc/apt/apt.conf.d/10periodic



          I changed my settings in the GUI to Never and checked what these files were altered to as a result:



          cat /etc/apt/apt.conf.d/20auto-upgrades`
          APT::Periodic::Update-Package-Lists "0";
          APT::Periodic::Download-Upgradeable-Packages "0";
          APT::Periodic::AutocleanInterval "0";
          APT::Periodic::Unattended-Upgrade "1";

          cat /etc/apt/apt.conf.d/10periodic
          APT::Periodic::Update-Package-Lists "0";
          APT::Periodic::Download-Upgradeable-Packages "0";
          APT::Periodic::AutocleanInterval "0";
          APT::Periodic::Unattended-Upgrade "1";


          Update-Package-Lists Becomes 14 when you set it to update fortnightly.



          Change your files to match and this should work for you.






          share|improve this answer














          The screenshot you provided, click the [Settings...] button, it has options to never check for updates there.



          To do this in the terminal you need to find the files that are used for this, probably in cron somewhere. I just ran a little test and found these two files:



          /etc/apt/apt.conf.d/20auto-upgrades & /etc/apt/apt.conf.d/10periodic



          I changed my settings in the GUI to Never and checked what these files were altered to as a result:



          cat /etc/apt/apt.conf.d/20auto-upgrades`
          APT::Periodic::Update-Package-Lists "0";
          APT::Periodic::Download-Upgradeable-Packages "0";
          APT::Periodic::AutocleanInterval "0";
          APT::Periodic::Unattended-Upgrade "1";

          cat /etc/apt/apt.conf.d/10periodic
          APT::Periodic::Update-Package-Lists "0";
          APT::Periodic::Download-Upgradeable-Packages "0";
          APT::Periodic::AutocleanInterval "0";
          APT::Periodic::Unattended-Upgrade "1";


          Update-Package-Lists Becomes 14 when you set it to update fortnightly.



          Change your files to match and this should work for you.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited May 2 at 23:50

























          answered Apr 30 at 21:33









          Noki

          3771625




          3771625











          • Thanks, we will try that. Is there a way to remotely make the same setting thru ssh session? We have 70+ units in the field, where this setting needs to be updated.
            – G. Shankar
            May 1 at 14:51










          • Hi, I ran some tests on my machine and found the cron jobs that seem to be responsible for the update notifier gui so you can update this setting using SSH. I updated my answer with the details, let me know how you get on please?
            – Noki
            May 1 at 20:03










          • P.S I don't know what the Unattended-Upgrade flag does.
            – Noki
            May 1 at 20:07










          • wiki.debian.org/UnattendedUpgrades it does this.
            – Noki
            May 1 at 20:21






          • 1




            Thank you so much! Your suggestions are very helpful. We will update the settings and check it.
            – G. Shankar
            May 2 at 14:09
















          • Thanks, we will try that. Is there a way to remotely make the same setting thru ssh session? We have 70+ units in the field, where this setting needs to be updated.
            – G. Shankar
            May 1 at 14:51










          • Hi, I ran some tests on my machine and found the cron jobs that seem to be responsible for the update notifier gui so you can update this setting using SSH. I updated my answer with the details, let me know how you get on please?
            – Noki
            May 1 at 20:03










          • P.S I don't know what the Unattended-Upgrade flag does.
            – Noki
            May 1 at 20:07










          • wiki.debian.org/UnattendedUpgrades it does this.
            – Noki
            May 1 at 20:21






          • 1




            Thank you so much! Your suggestions are very helpful. We will update the settings and check it.
            – G. Shankar
            May 2 at 14:09















          Thanks, we will try that. Is there a way to remotely make the same setting thru ssh session? We have 70+ units in the field, where this setting needs to be updated.
          – G. Shankar
          May 1 at 14:51




          Thanks, we will try that. Is there a way to remotely make the same setting thru ssh session? We have 70+ units in the field, where this setting needs to be updated.
          – G. Shankar
          May 1 at 14:51












          Hi, I ran some tests on my machine and found the cron jobs that seem to be responsible for the update notifier gui so you can update this setting using SSH. I updated my answer with the details, let me know how you get on please?
          – Noki
          May 1 at 20:03




          Hi, I ran some tests on my machine and found the cron jobs that seem to be responsible for the update notifier gui so you can update this setting using SSH. I updated my answer with the details, let me know how you get on please?
          – Noki
          May 1 at 20:03












          P.S I don't know what the Unattended-Upgrade flag does.
          – Noki
          May 1 at 20:07




          P.S I don't know what the Unattended-Upgrade flag does.
          – Noki
          May 1 at 20:07












          wiki.debian.org/UnattendedUpgrades it does this.
          – Noki
          May 1 at 20:21




          wiki.debian.org/UnattendedUpgrades it does this.
          – Noki
          May 1 at 20:21




          1




          1




          Thank you so much! Your suggestions are very helpful. We will update the settings and check it.
          – G. Shankar
          May 2 at 14:09




          Thank you so much! Your suggestions are very helpful. We will update the settings and check it.
          – G. Shankar
          May 2 at 14:09












           

          draft saved


          draft discarded


























           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1030314%2fhow-to-suppress-the-ubuntu-software-update-notifier-popup-in-ubuntu-14-04%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          pylint3 and pip3 broken

          Missing snmpget and snmpwalk

          How to enroll fingerprints to Ubuntu 17.10 with VFS491