Installing a list of packages from an URL

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











up vote
0
down vote

favorite












I'm trying to install a new version of RabbitMQ on my Raspberry Pi 3, running a new raspbian image (based on debian 9).



I was following the installation guide for Debian/Ubuntu, which worked for me on Ubuntu 18.04, but not on raspbian: https://www.rabbitmq.com/install-debian.html



Whatever I tried to do according to the guide to force the use of their own repository (creating /etc/apt/sources.list.d/bintray.erlang.list and /etc/apt/preferences.d/erlang), when I do apt-get install erlang-nox I get a version 19.2.1 from another repository. This version does not work with newer rabbitmq-server releases, and has security holes too.



So now instead, I want to manually install the erlang-nox packages, found here on the rabbitmq repository: http://dl.bintray.com/rabbitmq/debian/pool/erlang/21.0.5-1/debian/stretch/



How could I download the packages and install them all at once? Do I have to copy paste the name of all of these?



Edit: I noticed there is a erlang_21.0.5-1_all.deb package at the bottom of the list, tried to download it and install it, but as it turns out it does not contain all the packages at all, it is only 36 KB.










share|improve this question



























    up vote
    0
    down vote

    favorite












    I'm trying to install a new version of RabbitMQ on my Raspberry Pi 3, running a new raspbian image (based on debian 9).



    I was following the installation guide for Debian/Ubuntu, which worked for me on Ubuntu 18.04, but not on raspbian: https://www.rabbitmq.com/install-debian.html



    Whatever I tried to do according to the guide to force the use of their own repository (creating /etc/apt/sources.list.d/bintray.erlang.list and /etc/apt/preferences.d/erlang), when I do apt-get install erlang-nox I get a version 19.2.1 from another repository. This version does not work with newer rabbitmq-server releases, and has security holes too.



    So now instead, I want to manually install the erlang-nox packages, found here on the rabbitmq repository: http://dl.bintray.com/rabbitmq/debian/pool/erlang/21.0.5-1/debian/stretch/



    How could I download the packages and install them all at once? Do I have to copy paste the name of all of these?



    Edit: I noticed there is a erlang_21.0.5-1_all.deb package at the bottom of the list, tried to download it and install it, but as it turns out it does not contain all the packages at all, it is only 36 KB.










    share|improve this question

























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm trying to install a new version of RabbitMQ on my Raspberry Pi 3, running a new raspbian image (based on debian 9).



      I was following the installation guide for Debian/Ubuntu, which worked for me on Ubuntu 18.04, but not on raspbian: https://www.rabbitmq.com/install-debian.html



      Whatever I tried to do according to the guide to force the use of their own repository (creating /etc/apt/sources.list.d/bintray.erlang.list and /etc/apt/preferences.d/erlang), when I do apt-get install erlang-nox I get a version 19.2.1 from another repository. This version does not work with newer rabbitmq-server releases, and has security holes too.



      So now instead, I want to manually install the erlang-nox packages, found here on the rabbitmq repository: http://dl.bintray.com/rabbitmq/debian/pool/erlang/21.0.5-1/debian/stretch/



      How could I download the packages and install them all at once? Do I have to copy paste the name of all of these?



      Edit: I noticed there is a erlang_21.0.5-1_all.deb package at the bottom of the list, tried to download it and install it, but as it turns out it does not contain all the packages at all, it is only 36 KB.










      share|improve this question















      I'm trying to install a new version of RabbitMQ on my Raspberry Pi 3, running a new raspbian image (based on debian 9).



      I was following the installation guide for Debian/Ubuntu, which worked for me on Ubuntu 18.04, but not on raspbian: https://www.rabbitmq.com/install-debian.html



      Whatever I tried to do according to the guide to force the use of their own repository (creating /etc/apt/sources.list.d/bintray.erlang.list and /etc/apt/preferences.d/erlang), when I do apt-get install erlang-nox I get a version 19.2.1 from another repository. This version does not work with newer rabbitmq-server releases, and has security holes too.



      So now instead, I want to manually install the erlang-nox packages, found here on the rabbitmq repository: http://dl.bintray.com/rabbitmq/debian/pool/erlang/21.0.5-1/debian/stretch/



      How could I download the packages and install them all at once? Do I have to copy paste the name of all of these?



      Edit: I noticed there is a erlang_21.0.5-1_all.deb package at the bottom of the list, tried to download it and install it, but as it turns out it does not contain all the packages at all, it is only 36 KB.







      debian raspbian debian-installer erlang






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 29 at 10:58

























      asked Aug 29 at 10:35









      Zoltán Umlauf

      1012




      1012




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          0
          down vote













          You should try



          apt update
          apt install erlang


          If that doesn't work, you could download the erlang_21.0.5-1_all.deb package, install it with



          dpkg -i erlang_21.0.5-1_all.deb


          It will fail because of missing dependencies, that's okay, here's how you ask apt to fetch these for you:



          apt -f install





          share|improve this answer




















          • Sadly these did not work, for now I just installed an old version of rabbitmq-server (3.6.12)
            – Zoltán Umlauf
            Aug 29 at 11:15

















          up vote
          0
          down vote













          Add the erlang repo:



          # cat << EOF | tee /etc/apt/sources.list.d/rabbitmq.list
          deb http://dl.bintray.com/rabbitmq/debian/ stretch erlang
          EOF


          Or simply add the following line to /etc/apt/sources.list :



          deb http://dl.bintray.com/rabbitmq/debian/ stretch erlang


          Get the signing key:



          # wget -O - 'https://dl.bintray.com/rabbitmq/Keys/rabbitmq-release-signing-key.asc' | apt-key add -


          Then:



          # apt update
          $ apt-cache policy erlang-nox


          Install the specific version :



          # apt install erlang-nox=1:21.0.5-1


          apt will install the erlang-nox package with its dependencies.



          RabbitMQ: Installing on Debian and Ubuntu






          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',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            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%2funix.stackexchange.com%2fquestions%2f465470%2finstalling-a-list-of-packages-from-an-url%23new-answer', 'question_page');

            );

            Post as a guest






























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            You should try



            apt update
            apt install erlang


            If that doesn't work, you could download the erlang_21.0.5-1_all.deb package, install it with



            dpkg -i erlang_21.0.5-1_all.deb


            It will fail because of missing dependencies, that's okay, here's how you ask apt to fetch these for you:



            apt -f install





            share|improve this answer




















            • Sadly these did not work, for now I just installed an old version of rabbitmq-server (3.6.12)
              – Zoltán Umlauf
              Aug 29 at 11:15














            up vote
            0
            down vote













            You should try



            apt update
            apt install erlang


            If that doesn't work, you could download the erlang_21.0.5-1_all.deb package, install it with



            dpkg -i erlang_21.0.5-1_all.deb


            It will fail because of missing dependencies, that's okay, here's how you ask apt to fetch these for you:



            apt -f install





            share|improve this answer




















            • Sadly these did not work, for now I just installed an old version of rabbitmq-server (3.6.12)
              – Zoltán Umlauf
              Aug 29 at 11:15












            up vote
            0
            down vote










            up vote
            0
            down vote









            You should try



            apt update
            apt install erlang


            If that doesn't work, you could download the erlang_21.0.5-1_all.deb package, install it with



            dpkg -i erlang_21.0.5-1_all.deb


            It will fail because of missing dependencies, that's okay, here's how you ask apt to fetch these for you:



            apt -f install





            share|improve this answer












            You should try



            apt update
            apt install erlang


            If that doesn't work, you could download the erlang_21.0.5-1_all.deb package, install it with



            dpkg -i erlang_21.0.5-1_all.deb


            It will fail because of missing dependencies, that's okay, here's how you ask apt to fetch these for you:



            apt -f install






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Aug 29 at 11:04









            GDR

            1212




            1212











            • Sadly these did not work, for now I just installed an old version of rabbitmq-server (3.6.12)
              – Zoltán Umlauf
              Aug 29 at 11:15
















            • Sadly these did not work, for now I just installed an old version of rabbitmq-server (3.6.12)
              – Zoltán Umlauf
              Aug 29 at 11:15















            Sadly these did not work, for now I just installed an old version of rabbitmq-server (3.6.12)
            – Zoltán Umlauf
            Aug 29 at 11:15




            Sadly these did not work, for now I just installed an old version of rabbitmq-server (3.6.12)
            – Zoltán Umlauf
            Aug 29 at 11:15












            up vote
            0
            down vote













            Add the erlang repo:



            # cat << EOF | tee /etc/apt/sources.list.d/rabbitmq.list
            deb http://dl.bintray.com/rabbitmq/debian/ stretch erlang
            EOF


            Or simply add the following line to /etc/apt/sources.list :



            deb http://dl.bintray.com/rabbitmq/debian/ stretch erlang


            Get the signing key:



            # wget -O - 'https://dl.bintray.com/rabbitmq/Keys/rabbitmq-release-signing-key.asc' | apt-key add -


            Then:



            # apt update
            $ apt-cache policy erlang-nox


            Install the specific version :



            # apt install erlang-nox=1:21.0.5-1


            apt will install the erlang-nox package with its dependencies.



            RabbitMQ: Installing on Debian and Ubuntu






            share|improve this answer


























              up vote
              0
              down vote













              Add the erlang repo:



              # cat << EOF | tee /etc/apt/sources.list.d/rabbitmq.list
              deb http://dl.bintray.com/rabbitmq/debian/ stretch erlang
              EOF


              Or simply add the following line to /etc/apt/sources.list :



              deb http://dl.bintray.com/rabbitmq/debian/ stretch erlang


              Get the signing key:



              # wget -O - 'https://dl.bintray.com/rabbitmq/Keys/rabbitmq-release-signing-key.asc' | apt-key add -


              Then:



              # apt update
              $ apt-cache policy erlang-nox


              Install the specific version :



              # apt install erlang-nox=1:21.0.5-1


              apt will install the erlang-nox package with its dependencies.



              RabbitMQ: Installing on Debian and Ubuntu






              share|improve this answer
























                up vote
                0
                down vote










                up vote
                0
                down vote









                Add the erlang repo:



                # cat << EOF | tee /etc/apt/sources.list.d/rabbitmq.list
                deb http://dl.bintray.com/rabbitmq/debian/ stretch erlang
                EOF


                Or simply add the following line to /etc/apt/sources.list :



                deb http://dl.bintray.com/rabbitmq/debian/ stretch erlang


                Get the signing key:



                # wget -O - 'https://dl.bintray.com/rabbitmq/Keys/rabbitmq-release-signing-key.asc' | apt-key add -


                Then:



                # apt update
                $ apt-cache policy erlang-nox


                Install the specific version :



                # apt install erlang-nox=1:21.0.5-1


                apt will install the erlang-nox package with its dependencies.



                RabbitMQ: Installing on Debian and Ubuntu






                share|improve this answer














                Add the erlang repo:



                # cat << EOF | tee /etc/apt/sources.list.d/rabbitmq.list
                deb http://dl.bintray.com/rabbitmq/debian/ stretch erlang
                EOF


                Or simply add the following line to /etc/apt/sources.list :



                deb http://dl.bintray.com/rabbitmq/debian/ stretch erlang


                Get the signing key:



                # wget -O - 'https://dl.bintray.com/rabbitmq/Keys/rabbitmq-release-signing-key.asc' | apt-key add -


                Then:



                # apt update
                $ apt-cache policy erlang-nox


                Install the specific version :



                # apt install erlang-nox=1:21.0.5-1


                apt will install the erlang-nox package with its dependencies.



                RabbitMQ: Installing on Debian and Ubuntu







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Aug 29 at 16:16

























                answered Aug 29 at 16:02









                GAD3R

                22.9k164895




                22.9k164895



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f465470%2finstalling-a-list-of-packages-from-an-url%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Popular posts from this blog

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay