Skip to content

Instantly share code, notes, and snippets.

@LinauxTerminology
Created April 12, 2022 16:56
Show Gist options
  • Save LinauxTerminology/3441aeb99e73c7e8d53875209bc96f6a to your computer and use it in GitHub Desktop.
Save LinauxTerminology/3441aeb99e73c7e8d53875209bc96f6a to your computer and use it in GitHub Desktop.
I'll Do OpenssL Install On Ubuntu 20.04
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