https://mullvad.net/en/help/install-mullvad-app-linux
Trying to install VPN and these are the instructions Mullvad is giving me. This is ridiculous. There must be a more simple way. I know how to follow the instructions but I have no idea what I’m doing here. Can’t I just download a file and install it? I’m on Ubuntu.


deleted by creator
Thanks for the explanation. However trying to run the first command gives me sudo: curl: command not found
So I’m stuck right there in the first step lol
I would have guessed that Ubuntu would install it by default since its a very common way to get stuff from the internet (when in the terminal), but apparently not (the other option is
wgetwhich is most likely installed, but that uses a different way to get the stuff).You should be able to install curl with
sudo apt install curlMy fresh Debian install didn’t have that too and I thought it came with the installation
Debian doesn’t even come with sudo, git or curl by default. It’s kind of minimal on purpose.
It always throws me off on a fresh install when I can’t sudo
I didn’t know that any distribution comes with git preinstalled.
That should be easily solved with:
sudo apt install curldeleted by creator
Really appreciate your replies dude. So many are being a bit of an jerks here, but you (and few other) have been really helpful.
deleted by creator
Yeah, once you work in Linux for so long seeing someone ask about curl missing is really easy to take for granted that we all started there, we’ve all been fresh on Linux. A lot of people take pride in their experience, but they shouldn’t lord it over those who are learning to advance themselves. It’s completely counter to why Linux even exists.
curl is a good tool to have in general, you can install it with sudo apt install curl
Wow, interesting. You may be able to install curl to fix that like this:
sudo apt-get update sudo apt-get install curlCan’t hurt to try
sudo apt install curl
sudo apt install curlsudo apt install curl
This is a great explanation. And really well written. Thank you for taking the time to put it together
I love this community because of responses like this.
Hmm… ProtonVPN team solved this in better way. They put the repo configuration stuff into DEB file, so it’s just a matter of double clicking it and clicking install on Debian-based and Ubuntu-based (I know Ubuntu is Debian-based) distros and then installing the ProtonVPN client through either GUI or CLI package manager, whichever you wish to use. More newbie-friendly.
Unfortunately, I also just learned they dropped support for Arch Linux :(
I was wondering how they’d solve signature checking and key installation - and looking at their page they seem to recommend skipping checking package signatures which, to be honest, isn’t a super good practice - especially if you’re installing privacy software.
I get it’s more userfriendly - and they provide checksums, so not a huge deal, especially since these are not official Debian packages, but the package signing has been around since 2000, so it’s pretty well established procedure at this point.
Any instructions that say sudo curl should be thrown out immediately.
Is curl so untrusted that you would prefer to use 3 commands (one which still needs root permissions) instead?
The point is that an HTTPS request does not need root permissions. Other steps might, and that’s indeed high risk.
The curl that ships with apt is ubiquitous enough that I trust doing
sudo curl xxx yyymore than enough if it means avoiding typingcurl xxx /tmp/yyy && sudo mv /tmp/yyy yyyAgreed it’s not best practice. But when somebody is saying the individual step-by-step is too complicated, you want to give them the simplest command possible. Even if it is more risky. It’s a trade off of accessibility versus complexity
deleted by creator
deleted by creator
deleted by creator
deleted by creator
deleted by creator
deleted by creator