Last active
January 28, 2024 06:33
-
-
Save yocontra/48a0b892c5a0fc14e2a2 to your computer and use it in GitHub Desktop.
installing private internet access on kali linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get install network-manager-openvpn | |
wget https://www.privateinternetaccess.com/openvpn/openvpn.zip | |
mv openvpn.zip /etc/openvpn | |
cd /etc/openvpn | |
unzip openvpn.zip | |
rm -rf openvpn.zip | |
# set up the rest in the gui | |
# gateway = us-east.privateinternetaccess.com | |
# CA.crt will be in /etc/openvpn | |
# enable "use LZO data compression" in advanced |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment