I can't install the second node on the same PC, can you help?

What are you installing docker on? Arm or x86

1 Like

its odroid… i bought it from rpishop.cz

Ok then you need to install arm version of docker then.

1 Like

but docker is for * Ubuntu Bionic 18.04 (LTS)
on ODROID= ARM runnning bionic

Yeah but you need to install an arm based docker.

 sudo add-apt-repository \
   "deb [arch=armhf] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"
1 Like

is this steps bad?

No its not bad you just need to change the option of which docker to install.

1 Like

i see my problem now :frowning: armhf vs amd64
so 1st step is OK?

sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common

sudo add-apt-repository
“deb [arch=armhf] Index of linux/ubuntu/
$(lsb_release -cs)
stable”

You can install the

sudo add-apt-repository \
   "deb [arch=arm64] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"

They would both work but better that its 64bit and not 32bit

1 Like

ANY ERROR

You need to run

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

first

1 Like

done, excellent…installed

and have dillema

apt-get update && apt-get install docker.io
or

 sudo apt-get install docker-ce docker-ce-cli containerd.io
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io
1 Like

STILL ANY BUG :upside_down_face:

in this video https://www.youtube.com/watch?v=kD3l92cjo0Y
he used just

Install docker using:
“apt-get update && apt-get install docker.io”

Make a folder for the data to go into:
“sudo mkdir /root/storjdata”

“docker pull storjlabs/storagenode:arm”

docker run -d --restart unless-stopped -p 28967:28967
-e WALLET=“0x9102c53bdc25F4F0454140065bf782630ffD11e5”
-e EMAIL=“your.email@hotmail.com"
-e ADDRESS=“your IP or DNS name goes here:28967"
-e BANDWIDTH=“20TB”
-e STORAGE=“8.5TB”
–mount type=bind,source=“/root/.local/share/storj/identity/storagenode”,destination=/app/identity
–mount type=bind,source=“/root/storjdata”,destination=/app/config
–name storagenode storjlabs/storagenode:arm

“docker run -d --restart=always --name watchtower -v /var/run/docker.sock:/var/run/docker.sock storjlabs/watchtower storagenode watchtower”

Hmm try adding a different one

curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
sudo add-apt-repository \
   "deb [arch=arm64] https://download.docker.com/linux/debian \
   $(lsb_release -cs) \
   stable"

Ive never installed docker on odroid before just rpi4 an never had any issues.

Don’t follow that video as its outdated now.

1 Like

:roll_eyes: it looks bad for odroid

You can try what its telling you to try installing

docker-ce-cli:arm64

instead

1 Like

pain in my heart…

Try

sudo apt-get install -y libc6 -dev.

1 Like

root@odroid:~# sudo apt-get install -y libc6 -dev.
E: Command line option ‘e’ [from -dev.] is not understood in combination with the other options.