This repository hosts scripts to generate package repositories as well as the repositories themselves, hosted by github-pages.
This step adds Regolith's public key hosted in this repository into the local apt keystore. This allows apt to check the signatures of the packages hosted here against the public key.
- From a terminal, add the Regolith key to your apt keychain:
wget -qO - https://regolith-linux.github.io/package-repo/regolith.key | sudo apt-key add -- Add this repository to your apt sources:
export DISTRO=ubuntu # choose either 'ubuntu' or 'debian' here depending on system installing into
export CODENAME=hirsute # choose either 'focal' or 'hirsute' for ubuntu or 'buster' or 'bullseye' for debian
export ARCH=amd64 # choose either amd64 or arm64
echo deb [arch=amd64] https://regolith-linux.github.io/package-repo/$DISTRO/$CODENAME/$ARCH $CODENAME main | sudo tee /etc/apt/sources.list.d/regolith.list- Update your apt state:
sudo apt update- Install Regolith desktop
sudo apt install regolith-desktop-small