I have installed Cisco AnyConnect on CentOS 7. When I try to connect I get an error:
/opt/cisco/anyconnect/bin/vpndownloader: error while loading shared libraries: libpangox-1.0.so.0: cannot open shared object file: No such file or directory
I've Googled it, but there is no valid solution to this problem.
Does anybody use Cisco AnyConnect on CentOS 7 and know how to solve this issue?
11 Answer
It looks like Cisco AnyConnect requires pangox-compat. CentOS 7 does not ship with pangox, however it is in the EPEL (Extra Packages for Enterprise Linux) repository. You should be able to run these two commands to install the missing package:
# yum install
# yum install pangox-compatGood luck!
4