Solved Running Linux Application - shared library not found - ExpressVPN

I'm testing if I can get ExpressVPN to work. I installed the ExpressVPN Fedora Linux rpm, which worked fine.
Now running ldd expressvpn shows:

Code:
$ ldd expressvpnd
expressvpnd:
    linux_vdso.so.1 =>  (0x00007ffffffff000)
    libxvclient.so => /usr/lib/expressvpn/libxvclient.so (0x0000000801200000)
    libpthread.so.0 => /lib64/libpthread.so.0 (0x0000000801c00000)
    libc.so.6 => not found
    libdl.so.2 => /lib64/libdl.so.2 (0x0000000802000000)
    libm.so.6 => /lib64/libm.so.6 (0x0000000802400000)
    /lib64/ld-linux-x86-64.so.2 (0x0000000800f22000)
    libc.so.6 => not found
    libc.so.6 => not found
    libc.so.6 => not found
    libc.so.6 => not found

I checked ls /compat/linux/lib64/libc.so.6 and the file is there.

How can I make expressvpnd find it or how can I find out where expressvpnd is expecting the file to be ?
 
Back
Top