Created
August 2, 2021 14:32
-
-
Save rudSarkar/438df302aea0b742ea8518c3a6165968 to your computer and use it in GitHub Desktop.
Setup openssl with zlib support
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
eval sudo wget https://www.openssl.org/source/openssl-1.1.1k.tar.gz | |
eval sudo tar -zxvf openssl-1.1.0e.tar.gz | |
eval sudo cd openssl-1.1.0e | |
eval sudo rm ../openssl-1.1.0e.tar.gz | |
eval sudo ./config zlib | |
eval sudo make | |
eval sudo make install | |
eval which openssl | |
eval echo "OpenSSL installed with zlib support" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment