How to install the Proton VPN GUI app on Ubuntu
- Reading
- 3 mins
- Category
- Linux
Our Linux app with a graphic user interface (GUI) officially supports the latest stable Ubuntu LTS version running the GNOME desktop environment. It should also work with most distributions based on Ubuntu, but these are not officially supported.
Also available as a Snap package
For added convenience, a Snap package is also available for one-click installation on Ubuntu and other Snap-enabled Linux distributions. Please note, however, that Snap’s security sandboxing means the Snap version doesn’t include all features available in our native app.
This guide covers:
- How to install the app
- How to verify the app
- How to enable the system tray icon (optional)
- How to uninstall the app
- How to disable the kill switch if you have uninstalled the app
- How to install our beta Linux app
How to install the app
Open a terminal window and run:
#Download the package that contains the repository configuration and keys required to install the Proton VPN app.
wget https://repo.protonvpn.com/debian/dists/stable/main/binary-all/protonvpn-stable-release_1.0.8_all.deb
#Install the Proton VPN repository containing the app
sudo dpkg -i ./protonvpn-stable-release_1.0.8_all.deb && sudo apt update
#Install the app
sudo apt install proton-vpn-gnome-desktop
You can now connect to the internet privately and securely using Proton VPN.
How to verify the app
To check the repo package’s integrity, verify its checksum with the following command:
echo "0b14e71586b22e498eb20926c48c7b434b751149b1f2af9902ef1cfe6b03e180 protonvpn-stable-release_1.0.8_all.deb" | sha256sum --check -
Please don’t try to check the GPG signature of the release package itself (dpkg-sig –verify). Our internal release process is split into several parts; the release package is signed with a GPG key, and the repo is signed with another GPG key. So the keys don’t match.
How to enable the system tray icon (optional)
By default, the GNOME desktop doesn’t support tray icons. To enable this functionality on Debian-based distributions:
By default, the GNOME desktop doesn’t support tray icons. To enable this functionality:
1. Run:
sudo apt install gnome-shell-extension-appindicator gnome-shell-extension-prefs
2. Restart the Proton VPN app (if it was already running).
You can now connect to the internet privately and securely using Proton VPN.
How to uninstall the app
Run:
sudo apt install proton-vpn-gnome-desktop
How to disable the kill switch if you have uninstalled the app
You can easily turn off the kill switch inside our Linux app, but this isn’t possible if you’ve already uninstalled it. In this case, you can remove the kill switch and restore access to the internet as follows:
1. Identify the Proton VPN connection name with the command:
nmcli connection show --active
This will show a list of your system’s active connections.
2. Look for any connections that begin with prefix pvpn- This usually includes pvpn-killswitch and pvpn-ipv6leak-protection, and may include pvpn-routed-killswitch. Delete all these connections using the following command:
nmcli connection delete [connection name]
For example:
nmcli connection delete pvpn-killswitch
3. Re-run the following command to check that all Proton VPN connections have been removed:
nmcli connection show --active
If you see any Proton VPN connections left, delete them as described above.
How to use our beta Linux app
The beta version of our Linux app gives you access to new features before they are released publicly, but it is still in development. By using the beta version and sharing your feedback, you can help us find and address bugs.
If you already have the Linux app installed, to enable beta access, simply open the app and go to Settings and toggle the Beta access switch on.

If you haven’t installed the Linux app yet, you can either install the app and then enable beta access (as above). Or you can install the beta app directly. To do this, run:
wget https://repo.protonvpn.com/debian/dists/unstable/main/binary-all/protonvpn-beta-release_1.0.8_all.deb
sudo dpkg -i ./protonvpn-beta-release_1.0.8_all.deb && sudo apt update
sudo apt install proton-vpn-gnome-desktop
To check the repo package’s integrity, run:
echo "0f3c88b11aae384d76fc63547c4fbea1161c2aef376fb4b73d32786cbf9fa019" protonvpn-beta-release_1.0.8_all.deb | sha256sum --check -
To uninstall the beta Linux app, open a terminal and enter:
sudo apt autoremove proton-vpn-gnome-desktop && sudo apt purge protonvpn-beta-release