如何在 openSuse 上升级 php?

如何在 openSuse 上升级 php?

我目前正在运行 openSuse 12.1 和 php 5.3.8,想升级到 5.4。我该怎么做?我习惯使用 yast 安装软件包。

答案1

如果没有包你可以编译自己的 php

1. Download php, extract it and cd into the directory
2. ./configure - add options you need and do not forget --with-apxs2. It will compile the module for apache. (You can check the currunt options used to compile php in phpinfo()). You can see the help and options with ./configure --help
3. make - this will compile the php
4. make install - this will install the php

答案2

我使用 OpenSUSE 12.2,它与 SLE 软件包配合良好这个自定义存储库。添加存储库后,您只需将 yast 软件管理器中的 php 包版本切换为 5.4.9 即可。...

你可能还需要 libpcre0 依赖项,该依赖项不再位于 opensuse 12.2 repo 中,但你可以获取它从这里

您可以使用 下载它并wget使用 安装它rpm -i

该解决方案很干净,可以在五分钟内完成,并且效果完美。

相关内容