无法在Ubuntu 8上安装OpenSSL 1.1 [英] Unable to Install OpenSSL 1.1 on Ubuntu 8

查看:132
本文介绍了无法在Ubuntu 8上安装OpenSSL 1.1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在关注文章为什么"apt-get install openssl"没有安装OpenSSL的最新版本?是在我的UBuntu框上安装openssl,但是在我的ubuntu框上找不到命令,我是Windows用户,这是我的第一次体验ubuntu框,不确定如何修复

以下是我的Ubuntu版本

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

我已经从 https://www下载了OpenSSL 1.1. openssl.org/source/openssl-1.1.0f.tar.gz 并通过FTP上传到ubuntu服务器并运行以下命令

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

我不确定是否可以对此command not found进行热修复,有人可以请我对其进行修复,而不是对所有OpenSSL进行修复吗?

解决方案

当前有一个较新的版本1.1.0g.您应该检查 https://www.openssl.org/source/以查看可用的内容. /p>

您应该先阅读INSTALL文件,然后再执行其他操作.

如果在正确的目录中,您应该不会看到./config: command not found.您是否运行了cd命令? config脚本是否有可能失去其执行权限? ls -l config说什么?

make: command not found表示您尚未安装make命令.与其他开发工具一起安装的最简单方法是:

sudo apt-get install build-essential

对于configmake命令,无需使用sudo.如果要安装在需要root访问权限的位置,则可以将其用于make install.

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.

这篇关于无法在Ubuntu 8上安装OpenSSL 1.1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆