portsentry from home:portsentry project

Proszę wybrać system operacyjny

Dla Arch Linuksa, edytuj /etc/pacman.conf i dodaj następujące (pamiętaj, że kolejność repozytoriów w pacman.conf jest ważna, ponieważ pacman zawsze pobiera pierwszą znalezioną paczkę):
[home_portsentry_Arch]
Server = https://download.opensuse.org/repositories/home:/portsentry/Arch/$arch
Uruchom następujący program jako root
key=$(curl -fsSL https://download.opensuse.org/repositories/home:portsentry/Arch/$(uname -m)/home_portsentry_Arch.key)
fingerprint=$(gpg --quiet --with-colons --import-options show-only --import --fingerprint <<< "${key}" | awk -F: '$1 == "fpr" { print $10 }')

pacman-key --init
pacman-key --add - <<< "${key}"
pacman-key --lsign-key "${fingerprint}"

pacman -Sy home_portsentry_Arch/portsentry
Dla Debian 13 uruchom następujący program:
Keep in mind that the owner of the key may distribute updates, packages and repositories that your system will trust (more information).
echo 'deb http://download.opensuse.org/repositories/home:/portsentry/Debian_13/ /' | sudo tee /etc/apt/sources.list.d/home:portsentry.list
curl -fsSL https://download.opensuse.org/repositories/home:portsentry/Debian_13/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/home_portsentry.gpg > /dev/null
sudo apt update
sudo apt install portsentry
Dla Fedora 42 uruchom następujący program jako root:
dnf config-manager addrepo --from-repofile=https://download.opensuse.org/repositories/home:portsentry/Fedora_42/home:portsentry.repo
dnf install portsentry
Dla openSUSE Tumbleweed uruchom następujący program jako root:
zypper addrepo https://download.opensuse.org/repositories/home:portsentry/openSUSE_Tumbleweed/home:portsentry.repo
zypper refresh
zypper install portsentry
Dla openSUSE Slowroll uruchom następujący program jako root:
zypper addrepo https://download.opensuse.org/repositories/home:portsentry/openSUSE_Slowroll/home:portsentry.repo
zypper refresh
zypper install portsentry
Dla 16.0 uruchom następujący program jako root:
zypper addrepo https://download.opensuse.org/repositories/home:portsentry/16.0/home:portsentry.repo
zypper refresh
zypper install portsentry
Dla xUbuntu 24.04 uruchom następujący program:
Keep in mind that the owner of the key may distribute updates, packages and repositories that your system will trust (more information).
echo 'deb http://download.opensuse.org/repositories/home:/portsentry/xUbuntu_24.04/ /' | sudo tee /etc/apt/sources.list.d/home:portsentry.list
curl -fsSL https://download.opensuse.org/repositories/home:portsentry/xUbuntu_24.04/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/home_portsentry.gpg > /dev/null
sudo apt update
sudo apt install portsentry