Created
June 15, 2019 23:11
-
-
Save lnrsoft/805627431dacb696e23bcf1dc3551b90 to your computer and use it in GitHub Desktop.
Install openssl-1.1.1c on Debian or Ubuntu
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
#Ubuntu: | |
sudo -s | |
#Debian: | |
su - | |
apt install make gcc -y | |
cd /usr/local/src | |
wget https://www.openssl.org/source/openssl-1.1.1c.tar.gz | |
tar xvf openssl-1.1.1c.tar.gz | |
cd openssl-1.1.1c | |
./config -Wl,--enable-new-dtags,-rpath,'$(LIBRPATH)' | |
make | |
make install | |
vi /etc/manpath.config | |
#Add | |
#MANPATH_MAP /usr/local/ssl/bin /usr/local/ssl/man | |
mandb | |
#On Ubuntu add [/usr/local/ssl/bin:] | |
vi /etc/environment | |
#Add | |
#/usr/local/ssl/bin: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment