提供 OpenSSL 1.1.x 的软件包

提供 OpenSSL 1.1.x 的软件包

我正在使用 ubuntu,需要“openssl connect”中的代理选项。有人知道如何通过 apt-get 获取 OpenSSL 版本 1.1.x 吗?

答案1

不确定为什么这个问题还没有得到回答。

非常简单。

apt-get install openssl

这将安装适合您的 Ubuntu 版本的最新版 openssl。

您可以安装更高级别的 openssl,执行以下操作......

apt-get -y install software-properties-common
LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/apache2 </dev/null
apt-get update

apt-cache policy openssl

# Now you'll see a higher openssl level... for example...

net10 # apt-cache policy openssl
openssl:
  Installed: 1.1.0h-2.0+ubuntu18.04.1+deb.sury.org+1
  Candidate: 1.1.0h-2.0+ubuntu18.04.1+deb.sury.org+1
  Version table:
 *** 1.1.0h-2.0+ubuntu18.04.1+deb.sury.org+1 500
        500 http://ppa.launchpad.net/ondrej/apache2/ubuntu bionic/main amd64 Packages
        100 /var/lib/dpkg/status
     1.1.0h-2.0+ubuntu18.04.1+deb.sury.org+1 500
        500 http://ppa.launchpad.net/ondrej/nginx/ubuntu bionic/main amd64 Packages
     1.1.0h-2.0+ubuntu18.04.1+deb.sury.org+1 500
        500 http://ppa.launchpad.net/ondrej/php/ubuntu bionic/main amd64 Packages
     1.1.0g-2ubuntu4.1 500
        500 http://ubuntu.mirrors.ovh.net/ubuntu bionic-updates/main amd64 Packages
        500 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages
     1.1.0g-2ubuntu4 500
        500 http://ubuntu.mirrors.ovh.net/ubuntu bionic/main amd64 Packages

请注意,Bionic 的最高打包版本目前为 1.1.0g + 最新稳定版本(来自 ondrej PPAs)为 1.1.0h,因此添加额外的 PPA 可以提供更高级别的代码。

警告:一定要清楚自己在做什么。如果向系统添加了错误的 PPA,系统可能会变砖(变砖 - 无法重启或启动某些基本服务)。另外,有些 PPA 是安全的,而其他 PPA 则……值得怀疑……

当您将 PPA 添加到系统时,请确保您了解自己在做什么。

相关内容