1) Download the repository signing key to /etc/apt/trusted.gpg.d/:
# wget -O /etc/apt/trusted.gpg.d/tuxlava.gpg {{REPOSITORY}}signing-key.gpg
2) Create /etc/apt/sources.list.d/tuxlava.list with the following contents:
deb {{REPOSITORY}} ./
3) Install tuxlava as you would any other package:
# apt update # apt install tuxlava
Upgrading tuxlava will work just like it would for any other package (apt update, apt upgrade).
1) Create /etc/yum.repos.d/tuxlava.repo with the following contents:
[tuxlava]
name=tuxlava
type=rpm-md
baseurl={{REPOSITORY}}
gpgcheck=1
gpgkey={{REPOSITORY}}repodata/repomd.xml.key
enabled=1
2) Install tuxlava as you would any other package:
# dnf install tuxlava
Upgrades will be available in the same repository, so you can get them using the same procedure you already use to get other updates for your system.
1) Create /etc/pacman.d/tuxlava.conf with the following contents:
[tuxlava]
SigLevel = Optional TrustAll
Server = {{REPOSITORY}}
2) Include it from /etc/pacman.conf. Add one line at the bottom:
Include = /etc/pacman.d/*.conf
If you already have this line, do nothing.
3) Sync and install:
# pacman -Syu # pacman -S tuxlava