Guys, the procedure below installs Ubuntu (and its variants) and the Mullvad VPN. I did this on Zorin and it worked fine. I would like to do this through the Zorin 'Software' app so everything stays centralized. When I follow the method recommended on Mullvad’s website, the VPN app doesn’t show up in the store, it doesn’t appear as a repository in the Software app… anyway… if it’s possible, of course. Thank you in advance.
Installing the app using the Mullvad repository
To add our repository to your package manager and install it, follow the steps below.
Ubuntu/Debian
Install curl
(Make sure that you are not using the Snap version of curl).
sudo apt install curl
Download our signing key
The following command will download our PGP public key and store it where your package manager looks for trusted keyrings:
sudo curl -fsSLo /usr/share/keyrings/mullvad-keyring.asc https://repository.mullvad.net/deb/mullvad-keyring.asc
Option 1: Add the stable repository
This command adds the stable Mullvad repository to apt:
echo "deb [signed-by=/usr/share/keyrings/mullvad-keyring.asc arch=$( dpkg --print-architecture )] https://repository.mullvad.net/deb/stable stable main" | sudo tee /etc/apt/sources.list.d/mullvad.list
Install the package
After the repository is added you can install the Mullvad app using these commands:
sudo apt update sudo apt install mullvad-vpn
The app should now be installed (if not, see Troubleshooting below), and will automatically be upgraded in the future when you run sudo apt update && sudo apt upgrade.