Here’s how i’m trying to install pritunl:
gpg --options /dirmngr.conf --recv-keys 7568D9BB55FF9E5287D586017AE645C0CF8E292A
gpg --export 7568D9BB55FF9E5287D586017AE645C0CF8E292A > /usr/share/keyrings/pritunl.gpg
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/pritunl.gpg] <redacted>stable/apt jammy main' > /etc/apt/sources.list.d/pritunl.list
apt-get update -q
apt-get install -y pritunl
#8 47.28 + gpg --options /dirmngr.conf --recv-keys 7568D9BB55FF9E5287D586017AE645C0CF8E292A
#8 47.28 gpg: directory '/root/.gnupg' created
#8 47.28 gpg: keybox '/root/.gnupg/pubring.kbx' created
#8 48.75 gpg: key 8E6DA8B4E158C569: 3 duplicate signatures removed
#8 48.75 gpg: /root/.gnupg/trustdb.gpg: trustdb created
#8 48.76 gpg: key 7AE645C0CF8E292A: public key "Pritunl <contact@pritunl.com>" imported
#8 48.76 gpg: Total number processed: 1
#8 48.76 gpg: imported: 1
#8 48.77 + gpg --export 7568D9BB55FF9E5287D586017AE645C0CF8E292A
#8 48.77 + echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/pritunl.gpg] <redacted>stable/apt jammy main'
#8 48.77 + apt-get update -q
#8 49.17 Get:1 <redacted>/stable/apt jammy InRelease [2419 B]
#8 49.29 Hit:2 <redacted>ubuntu jammy InRelease
#8 49.32 Get:3 <redacted>/stable/apt jammy/main amd64 Packages [1205 B]
#8 49.52 Hit:4 <redacted>ubuntu jammy-updates InRelease
#8 49.67 Hit:5 <redacted>ubuntu jammy-backports InRelease
#8 50.18 Hit:6 <redacted>ubuntu jammy-security InRelease
#8 50.29 Fetched 3624 B in 1s (2457 B/s)
#8 50.29 Reading package lists...
#8 50.85 + apt-get install -y pritunl
#8 50.89 Reading package lists...
#8 51.43 Building dependency tree...
#8 51.55 Reading state information...
#8 51.60 Some packages could not be installed. This may mean that you have
#8 51.60 requested an impossible situation or if you are using the unstable
#8 51.60 distribution that some required packages have not yet been created
#8 51.60 or been moved out of Incoming.
#8 51.60 The following information may help to resolve the situation:
#8 51.60
#8 51.60 The following packages have unmet dependencies:
#8 51.69 pritunl : Depends: pritunl-ndppd but it is not installable
#8 51.69 E: Unable to correct problems, you have held broken packages.
This is due to the pritunl-ndppd
package not being available in Jammy. You can see that its missing in this file, yet is a “required” dependency.
- stable/apt/dists/jammy/main/binary-amd64/Packages
On this page Repositories it says that Jammy is supported under the “stable” banner. Unfortunately, it seems impossible to install pritunl on Ubuntu 22.04.
Also, in the unstable repository, the pritunl-ndppd
is available but pritunl
is removed. The install does not finish successfully.
#8 62.55 E: Unable to locate package pritunl
You can see that this package is available on focal (ubuntu 20.04), however:
- stable/apt/dists/focal/main/binary-amd64/Packages
I was able to get it installed by including both the stable and unstable repos, but that doesn’t seem ideal. Here’s what I added to /etc/apt/sources.list.d/
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/pritunl.gpg] <redacted>unstable/apt jammy main' > /etc/apt/sources.list.d/pritunl-unstable.list
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/pritunl.gpg] <redacted>stable/apt jammy main' > /etc/apt/sources.list.d/pritunl-stable.list
I had to include <redacted>
in my “links” because the forum only allows 2 links per post for new users. Let me know if you need any clarification.