在 ubuntu 10.04 64 位上安装 php 5.3.6

在 ubuntu 10.04 64 位上安装 php 5.3.6

我不想从源代码构建,而是想找到一些存储库,在那里我可以简单地执行apt-get install php5并获取最新版本。有谁知道我可以使用的任何可靠来源来做同样的事情,还是我唯一的选择就是自己构建?

答案1

PHP 5.3.6 的 PPA (个人软件包存档) 存储库位于https://launchpad.net/~bjori/+archive/php5附有安装说明。据我检查,也有 amd64 版本 (lucid)。

sudo add-apt-repository ppa:bjori/php5
sudo apt-get update

sudo aptitude show php5
Package: php5
State: not installed
Version: 5.3.6-8ubuntu0ppa4~lucid1
Priority: optional
Section: php
Maintainer: Hannes Magnusson <[email protected]>
..

sudo aptitude install php5 php5-cli
php -v
PHP 5.3.6-8ubuntu0ppa4~lucid1 (cli) (built: May  5 2011 22:11:21) 
Copyright (c) 1997-2011 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies

请注意,您需要为此启用 Universe 存储库。

相关内容