While executing a shell script (Private Internet Access VPN)…
> ./pia-v80-installer-linux.shInstalling files...
Installing dependencies...
Running: sudo apt-get install -y libxss1 libappindicator1 libappindicator3-1 gconf2 net-tools
Loading repository data...
Reading installed packages...
'gconf2' is already installed.
No update candidate for 'gconf2-3.2.6-lp150.1.13.x86_64'. The highest available version is already installed.
'net-tools' is already installed.
No update candidate for 'net-tools-2.0+git20170221.479bb4a-lp150.3.1.x86_64'. The highest available version is already installed.
'libappindicator3-1' is already installed.
No update candidate for 'libappindicator3-1-12.10.1+bzr20170215-lp150.3.1.x86_64'. The highest available version is already installed.
'libxss1' not found in package names. Trying capabilities.
No provider of 'libxss1' found.
- Did you mean libXss1?
Package installation failed. Please make sure that your package manager is configured correctly and is still supported by your distribution vendor.
But then…
# zypper in libXss1Loading repository data...
Reading installed packages...
'libXss1' is already installed.
No update candidate for 'libXss1-1.2.2-lp150.3.1.x86_64'. The highest available version is already installed.
Resolving package dependencies...
Nothing to do.
I didn’t know that apt-get was redirected to zypper and apt-get install to zypper install
that script was written for a debian based system which has different naming schemes as you can see you do have libxss1 installed but as zypper install is case sensitive it wants the name to be libXss1
afaik it should still install it (maybe you should open a bug report about this)
you could edit that sh file and replace libxss1 with libXss1 but as that is a deb script I don’t know if it will work
And to add to what I_A has mentioned, PIA’s software doesn’t work on openSUSE. It is a pure ubuntu software. I wouldn’t waste my time trying to get it to work.
Well I’ve been using it on all openSUSE versions since 12.0. But I did have to get help from a kind soul at P.I.A. I really don’t want to switch to Ubuntu after using SUSE since 9.3.
That’s “exactly” what I do (so I’m not sure now what you were talking about originally).
Although I’ve tried their software once (and stopped immediately because it was just too broken for my liking) I never use it.
Of course I downloaded that zip file (I prefer using the one with strong encryption (openvpn-strong.zip) and use it, but have set it up thusly:
cd /etc/openvpn
unzip the aforementioned zip file
create a config file (and name it myconfig) for my vpn session which has the following:
client
dev tun
proto udp
remote <my chosen server> 1197
resolv-retry infinite
nobind
persist-key
persist-tun
cipher AES-256-CBC
auth SHA256
tls-client
remote-cert-tls server
auth-user-pass <location of my pass file>
comp-lzo
verb 1
reneg-sec 0
crl-verify crl.rsa.4096.pem
ca ca.rsa.4096.crt
disable-occ
I followed these steps and I had to make one small modification in order to get it working. in the *.ovpn files that I downloaded from the PIA site, there is one parameter “compress” which needs to be changed with “comp-lzo” as in the example provided by
kerijan2003. Just in case someone else needs it. My thanks to you.