Linux

CentOS 替代 PHP 開發機?

  • September 1, 2012

我剛開始學習Linux。我正在使用 CentOS 6.3,我真的很喜歡它。但是我需要 PHP 5.4,目前 CentOS 不可用。我讀過 CentOS 就其本身的性質而言,並不經常更新軟體包。

您建議使用哪個發行版來替換 CentOS 並讓我享受最新版本的 Apache/PHP?

暫時不要放棄 CentOS!

解決此問題的一個常見過程是利用REMI 儲存庫以獲取目前的 PHP 和 MYSQL 包。

這應該可以滿足您的要求,並且仍然可以通過 Yum 進行管理。

指示:

您將首先需要 EPEL 儲存庫。然後是 REMI 文件。

wget http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-7.noarch.rpm
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
rpm -Uvh remi-release-6*.rpm epel-release-6*.rpm

這就是為了獲得回購。對於 PHP,類似:

yum --enablerepo=remi,remi-test install nginx php php-fpm php-common php-pear php-pdo php-mysql php-pgsql php-pecl-memcache php-gd php-mbstring php-mcrypt php-xml

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