Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install openssl 1.0.2

# (Install compiling library Make)  
sudo apt-get install make 

# (Download the latest OpenSSL 1.0.2g binaries)  
wget https://www.openssl.org/source/openssl-1.0.2l.tar.gz 

# (Extract the tar ball to the local directory)  
tar -xzvf openssl-1.0.2l.tar.gz 

# (Enter extracted OpenSSL directory)  
cd openssl-1.0.2l 

#  (Configure binaries for compiling)  
sudo ./config

# (install configured binaries)  
sudo make install 

# (This will create a sym link to the new binaries)  
sudo ln -sf /usr/local/ssl/bin/openssl `which openssl` 

# (Used to check the version of the Current OpenSSL binaries)  
openssl version -v 
Comment

PREVIOUS NEXT
Code Example
Shell :: check nativescript version 
Shell :: git log show diff 
Shell :: check if a variable is null in bash 
Shell :: change remote origin to fork 
Shell :: force pull git 
Shell :: flutter cocoapods not installed 
Shell :: ngrok minecraft server 
Shell :: npm uninstall 
Shell :: install docker compose in linux 
Shell :: merge remote commits to local then push 
Shell :: bash check for substring in string 
Shell :: grep nth line after match 
Shell :: how to check the parent branch in git 
Shell :: iptables deny all 
Shell :: zsh fzf plugin 
Shell :: How to install p12 certificate in ubuntu 
Shell :: install vim powershell 
Shell :: yum install package with version 
Shell :: remove global packages npm 
Shell :: install cassandra 
Shell :: clone a specific branch 
Shell :: git rewrite commit message 
Shell :: is lubuntu better than ubuntu 
Shell :: docker-compose change working dir 
Shell :: expo channels list 
Shell :: how to open text editor in git bash 
Shell :: rot13 in bash 
Shell :: install sqlite in ubuntu 
Shell :: push project to new branch git 
Shell :: how to run makefile in windows 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =