apt (resilient)How to set default APT sourceapt-get update and package authenticationInstallation problem...

What would be the challenges to taking off and landing a typical passenger jet at FL300?

Would the Republic of Ireland and Northern Ireland be interested in reuniting?

Why doesn't 'd /= d' throw a division by zero exception?

Numbers Decrease while Letters Increase

Why did MS-DOS applications built using Turbo Pascal fail to start with a division by zero error on faster systems?

How many US airports have 4 or more parallel runways?

Why in most German places is the church the tallest building?

How to gently end involvement with an online community?

Heat reduction based on compression

essere/stare - location of a building

Position a tabular on the corner of a slide

GPU chip implementation on CPU - will it be faster?

Strange-looking FM transmitter circuit

What is the difference between Major and Minor Bug?

Does travel insurance for short flight delays exist?

I don't have the theoretical background in my PhD topic. I can't justify getting the degree

Do they have Supervillain(s)?

Who was president of the USA?

Are there any elected officials in the U.S. who are not legislators, judges, or constitutional officers?

Was there ever a treaty between 2 entities with significantly different translations to the detriment of one party?

Why are non-collision-resistant hash functions considered insecure for signing self-generated information

Can a Rogue PC teach an NPC to perform Sneak Attack?

Why is there so little discussion / research on the philosophy of precision?

Non-visual Computers - thoughts?



apt (resilient)


How to set default APT sourceapt-get update and package authenticationInstallation problem with python-software-propertiesapt-get install gives 404 not found, but URL worksDoes “apt-get -s upgrade” or some other apt command have an option to list the repositories the packages will be downloaded from?How do I obtain the dependency fcitx-dbus?apt-get doesn't find phpldapadmin in Debian 9 (Stretch)How does apt-get work, in detail?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















I need to install a package list. The problem is that if a package does not exist in the repository it simply stops. I need some alternative to apt where it just ignores when a package is not in the repository










share|improve this question









New contributor



apolzek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

















  • 1





    What if the missing package is a dependency for one you want to install?

    – Jeff Schaller
    yesterday











  • In my specific case this is not so relevant. And I will also notify the user!

    – apolzek
    yesterday






  • 1





    See superuser.com/questions/837662/…

    – pLumo
    yesterday


















0















I need to install a package list. The problem is that if a package does not exist in the repository it simply stops. I need some alternative to apt where it just ignores when a package is not in the repository










share|improve this question









New contributor



apolzek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

















  • 1





    What if the missing package is a dependency for one you want to install?

    – Jeff Schaller
    yesterday











  • In my specific case this is not so relevant. And I will also notify the user!

    – apolzek
    yesterday






  • 1





    See superuser.com/questions/837662/…

    – pLumo
    yesterday














0












0








0








I need to install a package list. The problem is that if a package does not exist in the repository it simply stops. I need some alternative to apt where it just ignores when a package is not in the repository










share|improve this question









New contributor



apolzek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I need to install a package list. The problem is that if a package does not exist in the repository it simply stops. I need some alternative to apt where it just ignores when a package is not in the repository







ubuntu apt software-installation






share|improve this question









New contributor



apolzek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










share|improve this question









New contributor



apolzek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








share|improve this question




share|improve this question








edited yesterday









Jeff Schaller

49.2k11 gold badges72 silver badges163 bronze badges




49.2k11 gold badges72 silver badges163 bronze badges






New contributor



apolzek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








asked yesterday









apolzekapolzek

11 bronze badge




11 bronze badge




New contributor



apolzek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




New contributor




apolzek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • 1





    What if the missing package is a dependency for one you want to install?

    – Jeff Schaller
    yesterday











  • In my specific case this is not so relevant. And I will also notify the user!

    – apolzek
    yesterday






  • 1





    See superuser.com/questions/837662/…

    – pLumo
    yesterday














  • 1





    What if the missing package is a dependency for one you want to install?

    – Jeff Schaller
    yesterday











  • In my specific case this is not so relevant. And I will also notify the user!

    – apolzek
    yesterday






  • 1





    See superuser.com/questions/837662/…

    – pLumo
    yesterday








1




1





What if the missing package is a dependency for one you want to install?

– Jeff Schaller
yesterday





What if the missing package is a dependency for one you want to install?

– Jeff Schaller
yesterday













In my specific case this is not so relevant. And I will also notify the user!

– apolzek
yesterday





In my specific case this is not so relevant. And I will also notify the user!

– apolzek
yesterday




1




1





See superuser.com/questions/837662/…

– pLumo
yesterday





See superuser.com/questions/837662/…

– pLumo
yesterday










2 Answers
2






active

oldest

votes


















2















apt will not continue on errors.



As a workaround, you can install each item separately:



for i in package1 package2 package3; do
sudo apt-get install -y $i
done





share|improve this answer



































    0















    xargs -n1 sudo apt install  < list


    xargs can be used to install a list of package one by one.



    man xargs;



           -n max-args, --max-args=max-args
    Use at most max-args arguments per command line.





    share|improve this answer




























      Your Answer








      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "106"
      };
      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',
      autoActivateHeartbeat: false,
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });






      apolzek is a new contributor. Be nice, and check out our Code of Conduct.










      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f536847%2fapt-resilient%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      2















      apt will not continue on errors.



      As a workaround, you can install each item separately:



      for i in package1 package2 package3; do
      sudo apt-get install -y $i
      done





      share|improve this answer
































        2















        apt will not continue on errors.



        As a workaround, you can install each item separately:



        for i in package1 package2 package3; do
        sudo apt-get install -y $i
        done





        share|improve this answer






























          2














          2










          2









          apt will not continue on errors.



          As a workaround, you can install each item separately:



          for i in package1 package2 package3; do
          sudo apt-get install -y $i
          done





          share|improve this answer















          apt will not continue on errors.



          As a workaround, you can install each item separately:



          for i in package1 package2 package3; do
          sudo apt-get install -y $i
          done






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited yesterday

























          answered yesterday









          pLumopLumo

          7,46815 silver badges34 bronze badges




          7,46815 silver badges34 bronze badges




























              0















              xargs -n1 sudo apt install  < list


              xargs can be used to install a list of package one by one.



              man xargs;



                     -n max-args, --max-args=max-args
              Use at most max-args arguments per command line.





              share|improve this answer






























                0















                xargs -n1 sudo apt install  < list


                xargs can be used to install a list of package one by one.



                man xargs;



                       -n max-args, --max-args=max-args
                Use at most max-args arguments per command line.





                share|improve this answer




























                  0














                  0










                  0









                  xargs -n1 sudo apt install  < list


                  xargs can be used to install a list of package one by one.



                  man xargs;



                         -n max-args, --max-args=max-args
                  Use at most max-args arguments per command line.





                  share|improve this answer













                  xargs -n1 sudo apt install  < list


                  xargs can be used to install a list of package one by one.



                  man xargs;



                         -n max-args, --max-args=max-args
                  Use at most max-args arguments per command line.






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered yesterday









                  GAD3RGAD3R

                  30.4k19 gold badges63 silver badges122 bronze badges




                  30.4k19 gold badges63 silver badges122 bronze badges

























                      apolzek is a new contributor. Be nice, and check out our Code of Conduct.










                      draft saved

                      draft discarded


















                      apolzek is a new contributor. Be nice, and check out our Code of Conduct.













                      apolzek is a new contributor. Be nice, and check out our Code of Conduct.












                      apolzek is a new contributor. Be nice, and check out our Code of Conduct.
















                      Thanks for contributing an answer to Unix & Linux Stack Exchange!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f536847%2fapt-resilient%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

                      Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

                      Ciclooctatetraenă Vezi și | Bibliografie | Meniu de navigare637866text4148569-500570979m