无法在 ubuntu 10.04 中升级我的 php

无法在 ubuntu 10.04 中升级我的 php

我正在尝试将 php 从 5.3.10-1~lucid+2uwsgi2 (cli) 更新到 5.4,但出现错误。我尝试使用以下命令:

sudo add-apt-repository ppa:ondrej/php5

但出现错误:

Error reading https://launchpad.net/api/1.0/~ondrej/+archive/php5: couldn't connect to host

您能建议我如何进行更新吗?

提前致谢。

答案1

您可以执行以下操作:

在里面/etc/apt/sources.list我们添加

deb http://ppa.launchpad.net/ondrej/php5-oldstable/ubuntu lucid main 
deb-src http://ppa.launchpad.net/ondrej/php5-oldstable/ubuntu lucid main

然后我们添加他的密钥并更新系统

apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E5267A6C
apt-get update

现在,我们可以获得新的PHP5.4了!

apt-get install libapache2-mod-php5

成立于https://gist.github.com/terwey/6416511

编辑 由于不再支持 Ubuntu 10.04,该软件包似乎不再可用。请参阅帖子https://askubuntu.com/a/419462/189996和评论。

相关内容