简体   繁体   中英

Unable to Install OpenSSL 1.1 on Ubuntu 8

I was following the article Why 'apt-get install openssl' did not install last version of OpenSSL? to install openssl on my UBuntu box but am getting command not found on my ubuntu box, am a windows user and this is my first time experience on ubuntu box and not sure how it fix it

Below is my Ubuntu Version

Distributor ID: Ubuntu
Description:    Ubuntu 8.04.1
Release:        8.04
Codename:       hardy

I have manually downloaded OpenSSL 1.1 from https://www.openssl.org/source/openssl-1.1.0f.tar.gz and uploaded to ubuntu server via FTP and run the below commands

sudo ./config -Wl,--enable-new-dtags,-rpath,'$(LIBRPATH)'

output: sudo: ./config: command not found

sudo make

output: sudo: make: command not found

sudo make install

output: sudo: make: command not found

I'm not sure hot fix this command not found , can someone please me to fix it and isntall OpenSSL?

There's a newer version available currently 1.1.0g. You should check https://www.openssl.org/source/ to see what's available.

You should read the INSTALL file before doing anything else.

You shouldn't be seeing ./config: command not found if you're in the right directory. Did you run the cd command? Is it possible that the config script lost its execution permission? What does ls -l config say?

make: command not found indicates that you haven't installed the make command. The easiest way to install it, along with other development tools, is:

sudo apt-get install build-essential

There's no need to use sudo for the config or make command. You can use it for make install if you're installing in a location that requires root access.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM