Created
April 11, 2012 20:25
-
-
Save snickerjp/2362215 to your computer and use it in GitHub Desktop.
Install netExtenderClient
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
$ ldd netExtender | |
linux-vdso.so.1 => (0x00007fffdd3ff000) | |
libssl.so.6 => /lib/x86_64-linux-gnu/libssl.so.6 (0x00007f86adb48000) | |
libcrypto.so.6 => /lib/x86_64-linux-gnu/libcrypto.so.6 (0x00007f86ad7bb000) | |
libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1 (0x00007f86ad5b7000) | |
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f86ad39a000) | |
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f86acfdd000) | |
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f86acdd8000) | |
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f86acbc1000) | |
/lib64/ld-linux-x86-64.so.2 (0x00007f86addb5000) |
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
$ ldd netExtender | |
linux-vdso.so.1 => (0x00007fff1bbff000) | |
libssl.so.6 => not found | |
libcrypto.so.6 => not found | |
libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1 (0x00007f3ad922a000) | |
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f3ad900d000) | |
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f3ad8c50000) | |
/lib64/ld-linux-x86-64.so.2 (0x00007f3ad9448000) |
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
$ sudo ./install | |
--- SonicWALL NetExtender 5.5.707 Installer --- | |
Checking library dependencies... | |
Missing library: libssl.so.6 | |
No compatible version found. | |
-------------------------- INSTALLATION FAILED ------------------------- | |
Library dependencies must be resolved before NetExtender will be able to | |
operate correctly. Please resolve any dependencies listed above, then | |
try installing again. |
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
sudo ln -s /lib/x86_64-linux-gnu/libssl.so.0.9.8 /lib/x86_64-linux-gnu/libssl.so.6 | |
sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.0.9.8 /lib/x86_64-linux-gnu/libcrypto.so.6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment