Results 1 to 2 of 2

Thread: Installing Private Internet Access

  1. #1
    Mikey Guest

    Smile Installing Private Internet Access

    I've already set up Kali Linux on a Raspberry Pi "B" with a 4gb SD card, but realized its too small for the job. So I bought a RP "B+" with a 32gb Micro SD card. I don't see a problem, other than the 'Private Internet Access' which I don't know how to install.

    I have this running at present on my Windows 7 desktop machine which was easy to install.

    If someone has already configured this on their Kali system I would be grateful if you could tell me how you did it.

    Thanks a lot.

    Mikey .

  2. #2
    Join Date
    2015-Jul
    Posts
    1
    Download the configuration files from PIA :-

    curl -s -tlsv1.2 -O https://www.privateinternetaccess.co...pn/openvpn.zip

    Unzip :-

    mkdir /etc/openvpn
    cp openvpn.zip /etc/openvpn
    unzip openvpn.zip
    rm openvpn.zip

    Connect to VPN :- (Will ask for a username/password)

    openvpn --config /etc/openvpn/Switzerland.ovpn


    If you would like to save a credentials file instead to connect without a password:-

    echo "VPNUsername" > /etc/openvpn/creds/cred.txt
    echo "VPNPassword" >> /etc/openvpn/creds/cred.txt

    chmod 644 /etc/openvpn/creds/cred.txt

    Now connect to the VPN with the credentials file :-

    openvpn --config /etc/openvpn/Sweden.ovpn --auth-user-pass /etc/openvpn/creds/cred.txt --auth-nocache

Similar Threads

  1. fake access point clients can not access internet
    By --JayJay-- in forum General Archive
    Replies: 1
    Last Post: 2016-03-25, 14:02
  2. Using Private internet access with Kali
    By Mikey in forum General Archive
    Replies: 3
    Last Post: 2016-02-15, 10:32
  3. Network Access Yet No Internet Access {Desperate Mode}
    By eurovpn in forum TroubleShooting Archive
    Replies: 1
    Last Post: 2014-11-19, 20:35

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •