Ubuntu 16.04 上的 php 和 libssl1.1 安装损坏

Broken php and libssl1.1 installation on Ubuntu 16.04

我一直在使用 Ubuntu 16.04。最近我对我的 PHP 安装做了一些实验,恐怕我把东西弄坏了。我试过了

sudo apt install php7.0

但它显示了依赖关系和损坏的包错误

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 php7.0 : Depends: libapache2-mod-php7.0 but it is not going to be installed or
                   php7.0-fpm but it is not going to be installed or
                   php7.0-cgi but it is not going to be installed
          Depends: php7.0-common but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

在此之后,我运行

sudo apt install php7.0-common

响应是

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 php7.0-common : Depends: libssl1.1 (>= 1.1.0) but it is not installable
E: Unable to correct problems, you have held broken packages.

似乎缺少依赖项 libssl1.1 所以我尝试使用

手动安装它
sudo apt install libssl1.1

这是回复

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package libssl1.1 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libssl1.1' has no installation candidate

我有点卡在这一点上了。我的 os 坏了吗?

我已经通过手动安装 libssl 解决了这个问题。

wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb
sudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb