我需要将 php5.6 安装到我的 Ubuntu 19.10,在互联网上发现了很多变体,几乎所有变体都是相同的 - 使用 ppa:ondrej/php
我试过这个变种:
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
和这个:
LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
但是之后
sudo apt-get install php5.6
似乎没有任何效果,我得到的只是这样或类似的消息
Note, selecting 'php5.6-json' for regex 'php5.6'
Note, selecting 'php5.6-common' for regex 'php5.6'
到目前为止,我得到的唯一结果是在 sudo apt-get install php5 之后以某种方式安装了 php5.3,但这不是我想要的。
同样在命令'sudo add-apt-repository ppa:ondrej/php'之后,我得到了这样的东西:
E: The repository 'http://ppa.launchpad.net/ondrej/apache2/ubuntu eoan Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
有人可以帮助解决这个问题吗?
最后,经过 10 多个小时后,我发现我的 ubuntu 版本无法与软件中心正常工作,并且由于某种原因无法使用任何 ppa,而不仅仅是 ppa:ondrej/php。安装 Ubuntu 18.04.3 LTS (Bionic Beaver) 后,一切都开始工作,无需任何额外命令。
因此,对于那些遇到类似问题的人,我的建议是,在安装 ppa 之前,先了解一下 ppa 是什么,然后:
sudo apt-get upgrade
sudo apt-cache search php | wc -l
#在我的情况下是php,你可以要求任何其他包,这个命令将显示到目前为止有多少包可用sudo add-apt-repository ppa:ondrej/php
#它可以是任何其他存储库sudo apt-get update
sudo apt-cache search php | wc -l
#if number 与第二步之后的数字相同,这意味着您可能遇到与我相同的问题。抱歉英语不好,尽力而为。
显然 ondrej 只接受受支持的 php 版本,因此这意味着最近不支持的 php5.6 已选择退出他的存储库。