APT Repository for Status.im software
To use repos available here use one of the following lines to create repo config file:
echo 'deb https://apt.status.im/nimbus all main' | sudo tee /etc/apt/sources.list.d/nimbus.listAnd import the GPG key that is used to sign the releases:
sudo curl https://apt.status.im/pubkey.asc -o /etc/apt/trusted.gpg.d/apt-status-im.ascOr using the GnuPG tool:
gpg --recv-key --keyserver keyserver.ubuntu.com 55D8E9D1FD521C8F gpg --armor --export 55D8E9D1FD521C8F | sudo tee /etc/apt/trusted.gpg.d/apt-status-im.ascOr using the deprecated
apt-key
tool:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 55D8E9D1FD521C8FAfter that you can install Nimbus software with:
sudo apt-get update sudo apt-get install nimbus-beacon-node nimbus-validator-clientIn case of Docker images you might have to install
ca-certificates
:
sudo apt-get install ca-certificates