====== ๐ก๏ธ Installing MullvadVPN on Ubuntu ======
MullvadVPN is a privacy-focused VPN service that requires no personal information to create an account. This guide walks you through installing the MullvadVPN app on Ubuntu using either the official repository or manual download.
===== ๐งฐ Requirements =====
* ๐ง Ubuntu 22.04 or newer
* ๐ Internet connection
* ๐งพ Mullvad account (you only need an account number)
===== ๐ฆ Method 1: Install via Mullvad Repository =====
==== ๐ 1. Update Your System ====
sudo apt update && sudo apt upgrade -y
==== ๐ฅ 2. Install curl ====
sudo apt install curl
> โ ๏ธ Do not use the Snap version of curl.
==== ๐ 3. Add Mullvadโs Signing Key ====
curl -fsSL https://mullvad.net/downloads/mullvad-key.gpg | sudo gpg --dearmor -o /usr/share/keyrings/mullvad-keyring.gpg
==== ๐ 4. Add the Repository ====
echo "deb [signed-by=/usr/share/keyrings/mullvad-keyring.gpg] https://repository.mullvad.net/deb stable main" | sudo tee /etc/apt/sources.list.d/mullvad.list
==== ๐ฆ 5. Install MullvadVPN ====
sudo apt update
sudo apt install mullvad-vpn
===== ๐ฆ Method 2: Manual Installation =====
==== ๐ฅ 1. Download the .deb Installer ====
wget --content-disposition https://mullvad.net/download/app/deb/latest
==== ๐งฑ 2. Install the Package ====
sudo apt install -y ./MullvadVPN-*.deb
===== ๐ Launch and Connect =====
==== โถ๏ธ Start the App ====
mullvad-vpn
Or launch it from your desktop environment.
==== ๐ Log In ====
Enter your Mullvad account number (no email or password required).
==== ๐ Connect to a Server ====
Choose a location and click **Connect**.
===== โ
Verify Connection =====
Check your IP and DNS status:
mullvad status
===== ๐ ๏ธ Troubleshooting =====
* Restart service: `sudo systemctl restart mullvad-vpn`
* Check logs: `journalctl -u mullvad-vpn -f`
* Reinstall: rerun the install steps
===== ๐ Resources =====
* ๐ [[https://mullvad.net/en/help/install-mullvad-app-linux|Official Mullvad Linux Install Guide]]
* ๐ [[https://mullvad.net/en/account/|Mullvad Account Portal]]
* ๐ฌ [[https://forum.mullvad.net/|Mullvad Community Forum]]