Created
April 12, 2022 16:56
-
-
Save LinauxTerminology/3441aeb99e73c7e8d53875209bc96f6a to your computer and use it in GitHub Desktop.
I'll Do OpenssL Install On Ubuntu 20.04
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
If you need openssL Setup contact with me: | |
Email: [email protected] | |
Skype: https://join.skype.com/ | |
Telegram:https://t.me/LinauxTerminology | |
WhatsApp: +8801408694088 | |
Imo: +8801408694088 | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install build-essential checkinstall zlib1g-dev | |
#Step 2. Installing OpenSSL on Ubuntu 20.04. | |
#Now we download the source code OpenSSL from the official page: | |
cd /usr/local/src/ | |
wget https://www.openssl.org/source/openssl-1.1.1k.tar.gz | |
sudo tar -xf openssl-1.1.1k.tar.gz | |
cd openssl-1.1.1k | |
#Then, we configure and compile OpenSSL: | |
sudo ./config --prefix=/usr/local/ssl --openssldir=/usr/local/ssl shared zlib | |
sudo make | |
sudo make test | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment