簡體   English   中英

無法在Ubuntu 8上安裝OpenSSL 1.1

[英]Unable to Install OpenSSL 1.1 on Ubuntu 8

我正在關注文章為什么'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.org/source/openssl-1.1.0f.tar.gz手動下載了OpenSSL 1.1,並通過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/以查看可用的內容。

在執行任何其他操作之前,您應該閱讀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則可以將其用於make install

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM