DebianDebian Based

How To Install Pritunl on Debian 12

Install Pritunl on Debian 12

In this tutorial, we will show you how to install Pritunl on Debian 12. A VPN (Virtual Private Network) allows you to create a secure encrypted connection over the public internet. This is important for protecting your privacy and data when using public Wi-Fi or accessing your private home or company network resources remotely. Pritunl is an excellent open-source solution that makes setting up and managing a VPN server straightforward. It provides an intuitive web-based dashboard for easily creating and monitoring VPN user accounts.

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step installation of Pritunl VPN on a Debian 12 (Bookworm).

Prerequisites

  • A server running one of the following operating systems: Debian 12 (Bookworm).
  • It’s recommended that you use a fresh OS install to prevent any potential issues.
  • SSH access to the server (or just open Terminal if you’re on a desktop).
  • An active internet connection. You’ll need an internet connection to download the necessary packages and dependencies for Pritunl.
  • A non-root sudo user or access to the root user. We recommend acting as a non-root sudo user, however, as you can harm your system if you’re not careful when acting as the root.

Install Pritunl on Debian 12 Bookworm

Step 1. Before installing any new software, it’s always a good practice to update the system’s package list. This ensures that you have the latest versions of all packages, which can help prevent compatibility issues. To update your system’s package list, open a terminal and run the following command:

sudo apt update
sudo apt upgrade

Step 2. Install Required Dependencies

Pritunl requires certain dependencies for its operation. These include wget and gnupg. Install these using the following commands:

sudo apt install wget gnupg

Step 3. Install Pritunl on Debian 12.

Since we’ll install Pritunl from their official repository, we need to add its GPG signing key to verify the packages’ authenticity.

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com --recv 7568D9BB55FF9E5287D586017AE645C0CF8E292A

If apt-key is deprecated, you may see warnings. An alternative method is:

curl https://repo.pritunl.com/stable/apt/7568D9BB55FF9E5287D586017AE645C0CF8E292A.key | sudo apt-key add -

Next, we’ll add the repository details so APT knows where to fetch the Pritunl package from:

echo "deb https://repo.pritunl.com/stable/apt bookworm main" | sudo tee /etc/apt/sources.list.d/pritunl.list

With the Pritunl repository added, you’re now ready to install Pritunl. To do this, run the following command in your terminal:

sudo apt update
sudo apt install pritunl

After installing Pritunl, you’ll need to start the Pritunl service and enable it to start at boot. This ensures that Pritunl is always running and ready to manage your VPN connections. To start the Pritunl service and enable it to start at boot, run the following commands in your terminal:

sudo systemctl start pritunl
sudo systemctl enable pritunl

Step 4. Configuring Pritunl.

With Pritunl installed and running, the next step is to configure it. To do this, you’ll need to access the Pritunl web console. This can be done by opening a web browser and navigating to your server’s IP address (http://<your_server_ip>).

The first time you visit, you’ll be greeted by the setup screen asking you to configure settings like the MongoDB connection URL and an initial admin password.

To generate a random setup key, run:

sudo pritunl setup-key

Install Pritunl on Debian 12 Bookworm

Step 5. Install and Configure Pritunl Client.

The final step in setting up Pritunl is to install and configure the Pritunl client on your workstation. This client allows you to connect to the Pritunl server and manage your VPN connections.

To install the Pritunl client, visit the Pritunl VPN clients page and choose a client for your workstation. After installing the client, log in to the Pritunl VPN server to download your user profile. This profile can be imported into your Pritunl VPN client, allowing you to connect to the VPN server.

Congratulations! You have successfully installed Pritunl. Thanks for using this tutorial for installing the latest version of Pritunl VPN on Debian 12 Bookworm. For additional help or useful information, we recommend you check the official Pritunl website.

VPS Manage Service Offer
If you don’t have time to do all of this stuff, or if this is not your area of expertise, we offer a service to do “VPS Manage Service Offer”, starting from $10 (Paypal payment). Please contact us to get the best deal!

r00t

r00t is a seasoned Linux system administrator with a wealth of experience in the field. Known for his contributions to idroot.us, r00t has authored numerous tutorials and guides, helping users navigate the complexities of Linux systems. His expertise spans across various Linux distributions, including Ubuntu, CentOS, and Debian. r00t's work is characterized by his ability to simplify complex concepts, making Linux more accessible to users of all skill levels. His dedication to the Linux community and his commitment to sharing knowledge makes him a respected figure in the field.
Back to top button