...
Tip | ||
---|---|---|
| ||
At the moment, we support Debian/Raspbian (8, 9 , and 10) and Ubuntu (16.04, 18.04, and 1820.04). |
Add the Moonshot Debian repository to your system. To do this, run the following command (as root, or using sudo):
Code Block language bash title Debian 89 linenumbers true collapse true wget https://repository.project-moonshot.org/debian-moonshot/moonshot-repository.debian8debian9.deb dpkg -i moonshot-repository.debian8debian9.deb
Code Block language bash title Debian 910 linenumbers true collapse true wget https://repository.project-moonshot.org/debian-moonshot/moonshot-repository.debian9debian10.deb dpkg -i moonshot-repository.debian9debian10.deb
Code Block language bash title Debian 1011 linenumbers true collapse true wget https://repository.project-moonshot.org/debian-moonshot/moonshot-repository.debian10debian11.deb dpkg -i moonshot-repository.debian10debian11.deb
Code Block language bash title Raspbian 89 linenumbers true collapse true wget https://repository.project-moonshot.org/raspbian/moonshot-repository.raspbian8raspbian9.deb dpkg -i moonshot-repository.raspbian8raspbian9.deb
Code Block language bash title Raspbian 910 linenumbers true collapse true wget https://repository.project-moonshot.org/raspbian/moonshot-repository.raspbian9raspbian10.deb dpkg -i moonshot-repository.raspbian9raspbian10.deb
Code Block language bash title Raspbian 1011 linenumbers true collapse true wget https://repository.project-moonshot.org/raspbian/moonshot-repository.raspbian10raspbian11.deb dpkg -i moonshot-repository.raspbian10raspbian11.deb
Code Block language bash title Ubuntu 1618.04 linenumbers true collapse true wget https://repository.project-moonshot.org/debian-moonshot/moonshot-repository.
ubuntu16ubuntu18.deb dpkg -i moonshot-repository.
ubuntu16ubuntu18.deb
Code Block language bash title Ubuntu 1820.04 linenumbers true collapse true wget https://repository.project-moonshot.org/debian-moonshot/moonshot-repository.
ubuntu18ubuntu20.deb dpkg -i moonshot-repository.
ubuntu18ubuntu20.deb
This installs the apt repository, the current Moonshot GPG key, and a package that can update both. This is the preferred method of deploying repository information.
Note title Verifying the Moonshot GPG key If you wish to verify the Moonshot GPG key's validity and integrity, please see the Packaging GPG Key for further details.
Update the apt cache with the new repository information:
Code Block language bash linenumbers true apt-get update
...