...
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 wget https://repository.project-moonshot.org/debian-moonshot/moonshot-repository.debian8.deb dpkg -i moonshot-repository.debian8.deblanguage bash title Debian 8 linenumbers true collapse true Code Block language bash title Debian 9 linenumbers true collapse true wget https://repository.project-moonshot.org/debian-moonshot/moonshot-repository.debian9.deb dpkg -i moonshot-repository.debian9.deb
Code Block language bash title Debian 10 linenumbers true collapse true wget https://repository.project-moonshot.org/debian-moonshot/moonshot-repository.debian10.deb dpkg -i moonshot-repository.debian10.deb
Code Block language bash title Raspbian 8Debian 11 linenumbers true collapse true wget https://repository.project-moonshot.org/raspbiandebian-moonshot/moonshot-repository.raspbian8debian11.deb dpkg -i moonshot-repository.raspbian8debian11.deb
Code Block language bash title Raspbian 9 linenumbers true collapse true wget https://repository.project-moonshot.org/raspbian/moonshot-repository.raspbian9.deb dpkg -i moonshot-repository.raspbian9.deb
Code Block language bash title Raspbian 10 linenumbers true collapse true wget https://repository.project-moonshot.org/raspbian/moonshot-repository.raspbian10.deb dpkg -i moonshot-repository.raspbian10.deb
Code Block language bash title Ubuntu 16.04Raspbian 11 linenumbers true collapse true wget https://repository.project-moonshot.org/
debian-moonshotraspbian/moonshot-repository.
ubuntu16raspbian11.deb dpkg -i moonshot-repository.
ubuntu16raspbian11.deb
Code Block language bash title Ubuntu 18.04 linenumbers true collapse true wget https://repository.project-moonshot.org/debian-moonshot/moonshot-repository.ubuntu18.deb dpkg -i moonshot-repository.ubuntu18.deb
Code Block language bash title Ubuntu 20.04 linenumbers true collapse true wget https://repository.project-moonshot.org/debian-moonshot/moonshot-repository.ubuntu20.deb dpkg -i moonshot-repository.ubuntu20.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
...