Can't install on Ubuntu 24.04

As described in title, I can’t install the vpn client on ubuntu 24.04. Is it not supported? When will it be supported if it’s in the works? Thanks.

1 Like

It’s not listed on the homepage yet but it is currently in the repository. The repository documentation has all the repositories listed.

thanks for the reply. but installation fails btw, here’s running sudo apt update:

E: The repository 'https://repo.pritunl.com/stable/apt noble Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
N: Skipping acquire of configured file 'multiverse/binary-i386/Packages' as repository 'https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 InRelease' doesn't support architecture 'i386'

The build script wasn’t updated with the new releases during the build. The package should now be available on the stable repository for 24.04.

I’ve added the repositories I think I need, but it still fails on dependencies on pritunl-ndppd and python3-distutil
image

I have most of the packages updated for 24.04 and other distributions. All of these will be uploaded to the unstable repository today. Currently the ArchLinux builds are failing for all the packages, this will delay moving anything to the stable repository.

It’s not recommended to use Ubuntu or Ubuntu 24.04, Oracle Linux 8 should be used. There is still no MongoDB build available for 24.04 so the database would need to either run on another server or attempt to run the 22.04 build on 24.04.

still not working or updated (pritunl_1.32.3897.75-0ubuntu1~noble_amd64.deb) in unstable

can we hope for a stable release for noble soon? i also cant use the jammy packages on noble. is there a working alternative? ubuntus latest LTS is released now since half a year. cant run any longer the old LTS here.

thx.

The pyMongo v4 builds are now in the unstable repository, other than some incomplete web UI code these should be ready to use. It may get moved to stable in 2-4 weeks. Below are the install instructions for 24.04 using the unstable repository.

sudo tee /etc/apt/sources.list.d/mongodb-org.list << EOF
deb [ signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse
EOF

sudo tee /etc/apt/sources.list.d/openvpn.list << EOF
deb [ signed-by=/usr/share/keyrings/openvpn-repo.gpg ] https://build.openvpn.net/debian/openvpn/stable noble main
EOF

sudo tee /etc/apt/sources.list.d/pritunl.list << EOF
deb [ signed-by=/usr/share/keyrings/pritunl.gpg ] https://repo.pritunl.com/unstable/apt noble main
EOF

sudo apt --assume-yes install gnupg
curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg --dearmor --yes
curl -fsSL https://swupdate.openvpn.net/repos/repo-public.gpg | sudo gpg -o /usr/share/keyrings/openvpn-repo.gpg --dearmor --yes
curl -fsSL https://raw.githubusercontent.com/pritunl/pgp/master/pritunl_repo_pub.asc | sudo gpg -o /usr/share/keyrings/pritunl.gpg --dearmor --yes

sudo ufw disable
sudo apt update
sudo apt --assume-yes install pritunl mongodb-org wireguard-tools
sudo systemctl start mongod pritunl
sudo systemctl enable mongod pritunl
1 Like