
Install Orb on Arch Linux
These instructions are for installing Orb on Arch Linux.
Add Orb Forge's GPG key
curl -q https://pkgs.orb.net/stable/rpm/key.gpg | pacman-key -a -
pacman-key --lsign-key AC24C3F82F82BADB6868AE99C1968008BFF84DF5Add the Orb repository
To enable updates through pacman, add the following to your /etc/pacman.conf:
[orb]
Server = https://pkgs.orb.net/stable/arch/$archUpdate the package database
After adding the Orb repository, update your package database to ensure the changes take effect:
pacman -SyInstall Orb
pacman -S orbEnable Orb service
systemctl enable --now orbEnable ephemeral mode (optional)
Info
Ephemeral mode prevents writes to disk by storing the Orb data in memory rather than in a local database. This is useful in applications where the file system is on a physical medium sensitive to continous writes (e.g. SD card, NAND flash).
echo 'ORB_EPHEMERAL_MODE=1' | sudo tee -a /etc/default/orb >/dev/null
sudo systemctl restart orb