Linux

如何在 openSuse 上升級 php?

  • January 12, 2013

我目前正在使用 php 5.3.8 執行 openSuse 12.1,並希望升級到 5.4。我該怎麼做?我習慣於用 yast 安裝軟體包。

如果沒有包可以自己編譯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

我使用 OpenSUSE 12.2,它適用於來自這個自定義儲存庫的 SLE 包。添加儲存庫後,您只需將 yast 軟體管理器中的 php 包版本切換到 5.4.9….

您可能還需要在 opensuse 12.2 儲存庫中不再存在的 libpcre0 依賴項,但您可以從此處獲取。

您可以使用wget安裝它來下載它rpm -i

這個解決方案很乾淨,可以在五分鐘內完成,而且效果很好。

引用自:https://serverfault.com/questions/367807