How to install openssl in linux ubuntu?

Member

by anissa , in category: Installation & Upgrades , a year ago

How to install openssl in linux ubuntu?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by samara , 9 months ago

@anissa Run the following commands in the terminal to install OpenSSL in Linux Ubuntu:


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# update the package index list
sudo apt update

# install OpenSSL
sudo apt install openssl

# check the version of OpenSSL installed
openssl version -a

# verify the installation
sudo dpkg -l | grep openssl