====== ๐Ÿ›ก๏ธ 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]]