Avaiable repositories and instructions
For APT (Debian 10.x/11.x/12.x, Ubuntu 20.x/21.x/22.x, etc.):
- adding the repository (any of the following):
option 1 (generic): sudo apt-add-repository 'deb https://repos.zahariev.pro/apt stable main'
option 2.1 (amd64): echo "deb [arch=amd64] https://repos.zahariev.pro/apt stable main" | sudo tee /etc/apt/sources.list.d/zahariev-repo.list
option 2.2 (arm64): echo "deb [arch=arm64] https://repos.zahariev.pro/apt stable main" | sudo tee /etc/apt/sources.list.d/zahariev-repo.list
Note: If you go for option 1, you may need to install additional packages first:
sudo apt-get install software-properties-common
- installing the package
sudo apt-get update --allow-insecure-repositories && sudo apt-get install hello-lsa
For DNF/YUM (AlmaLinux OS 8.x, CentOS 8.x, Rocky Linux 8.x, etc.):
- adding the repository (any of the following):
option 1: sudo dnf config-manager --add-repo https://repos.zahariev.pro/dnf/zahariev-repo.repo
option 2: sudo dnf config-manager --add-repo https://repos.zahariev.pro/dnf
option 3:
cat << EOF | sudo tee /etc/yum.repos.d/zahariev-repo.repo
[zahariev-repo]
name=zahariev-repo
enabled=1
gpgcheck=0
baseurl=https://repos.zahariev.pro/dnf
EOF
Note: If you go for option 1 or option 2, you may need to install additional packages first:
sudo dnf install 'dnf-command(config-manager)'
- installing the package
sudo dnf install hello-lsa
- installing the package (without GPG check)
sudo dnf install --nogpgcheck hello-lsa
For Zypper (openSUSE Leap 15.x, openSUSE Tumbleweed, etc.):
- adding the repository (any of the following):
option 1: sudo zypper addrepo https://repos.zahariev.pro/zypper zahariev-repo
option 2: sudo zypper ar https://repos.zahariev.pro/zypper zahariev-repo
- installing the package
sudo zypper install hello-lsa