Installing
Currently (2022-11-28), Terra only supports RPM packages.
Adding Terra
Fedora Atomic Editions
On Immutable editions of Fedora, run the following command:
curl -fsSL https://github.com/terrapkg/subatomic-repos/raw/main/terra.repo | pkexec tee /etc/yum.repos.d/terra.repo
sudo rpm-ostree install terra-releaseOther Fedora Editions
Directly install terra-release:
$ sudo dnf install --nogpgcheck --repofrompath 'terra,https://repos.fyralabs.com/terra$releasever' terra-releaseThere is also a fancy install script:
⚠️
Practice caution before running any commands on your system.
$ sh <(curl https://terra.fyralabs.com/get.sh)If you doubt the safety of the script (which you should), curl the script to stdout first:
$ curl https://terra.fyralabs.com/get.shOr, just don't use the fancy script. I guess.
Using Terra
Install
$ sudo dnf install package-name another-packageSearch
$ dnf search package-name
(or)
$ dnf provides package-nameRemove
$ sudo dnf remove package-name another-packageUpgrade
$ sudo dnf upgrade
(or)
$ sudo dnf upgrade package-name another-package