Forked from fabiomello/install_openssl_newer_ubuntu.sh
Last active
November 25, 2024 14:01
-
-
Save letian-jiang/cb1312c905408506053621098f7c4035 to your computer and use it in GitHub Desktop.
Install OpenSSL 1.0 On Ubuntu
This file contains hidden or 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
| mkdir openssl1.0 | |
| cd openssl1.0 | |
| wget http://archive.debian.org/debian/pool/main/o/openssl/libssl1.0.0_1.0.2l-1~bpo8+1_amd64.deb | |
| wget http://archive.debian.org/debian/pool/main/o/openssl/libssl-dev_1.0.2l-1~bpo8+1_amd64.deb | |
| wget http://archive.debian.org/debian/pool/main/o/openssl/openssl_1.0.2l-1~bpo8+1_amd64.deb | |
| dpkg -x libssl-dev_1.0.2l-1~bpo8+1_amd64.deb . | |
| dpkg -x libssl1.0.0_1.0.2l-1~bpo8+1_amd64.deb . | |
| dpkg -x openssl_1.0.2l-1~bpo8+1_amd64.deb . | |
| cd usr/lib/x86_64-linux-gnu/ | |
| ln -s libcrypto.so.1.0.0 libcrypto.so.10 | |
| export LD_LIBRARY_PATH=$(pwd)/usr/lib/x86_64-linux-gnu/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment