Installing a list of packages from an URL
Clash 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.
debian raspbian debian-installer erlang
add a comment |Â
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.
debian raspbian debian-installer erlang
add a comment |Â
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.
debian raspbian debian-installer erlang
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
debian raspbian debian-installer erlang
edited Aug 29 at 10:58
asked Aug 29 at 10:35
Zoltán Umlauf
1012
1012
add a comment |Â
add a comment |Â
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
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
add a comment |Â
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
add a comment |Â
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
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
add a comment |Â
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
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
add a comment |Â
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
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
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
add a comment |Â
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
add a comment |Â
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
add a comment |Â
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
add a comment |Â
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
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
edited Aug 29 at 16:16
answered Aug 29 at 16:02
GAD3R
22.9k164895
22.9k164895
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password