freebsd7.0 安装记录( 二 )


##安装php
[root@fb7 /usr/src]# fetch http://cn.php.net/get/php-5.2.5.tar.gz/from/this/mirror
[root@fb7 /usr/src]# tar zxvf mirror
[root@fb7 /usr/src]# cd php-5.2.5/ext/
[root@fb7 /usr/src/php-5.2.5/ext]# fetch http://pecl.php.net/get/pdflib-2.1.5.tgz
[root@fb7 /usr/src/php-5.2.5/ext]# tar zxvf pdflib-2.1.5.tgz
[root@fb7 /usr/src/php-5.2.5/ext]# rm -r pdf
[root@fb7 /usr/src/php-5.2.5/ext]# mv pdflib-2.1.5 pdf
[root@fb7 /usr/src/php-5.2.5/ext]# http://pecl.php.net/get/svn-0.3.tgz
[root@fb7 /usr/src/php-5.2.5/ext]# fetch http://pecl.php.net/get/svn-0.3.tgz
[root@fb7 /usr/src/php-5.2.5/ext]# tar zxvf svn-0.3.tgz
[root@fb7 /usr/src/php-5.2.5/ext]# mv svn-0.3 svn
[root@fb7 /usr/src/php-5.2.5/ext]# fetch http://pecl.php.net/get/memcache-2.2.3.tgz
[root@fb7 /usr/src/php-5.2.5/ext]# tar zxvf memcache-2.2.3.tgz
[root@fb7 /usr/src/php-5.2.5/ext]# mv memcache-2.2.3 memcache
[root@fb7 /usr/src/php-5.2.5/ext]# fetch http://pecl.php.net/get/imagick-2.1.1.tgz
[root@fb7 /usr/src/php-5.2.5/ext]# tar zxvf imagick-2.1.1.tgz
[root@fb7 /usr/src/php-5.2.5/ext]# mv imagick-2.1.1 imagick
[root@fb7 /usr/src/php-5.2.5/ext]# cd ..
[root@fb7 /usr/src/php-5.2.5]# mv configure configure.old
[root@fb7 /usr/src/php-5.2.5]# ./buildconf --force
[root@fb7 /usr/src/php-5.2.5]# ./configure --prefix=/server/php --with-config-file-path=/server/php --with-apxs2=/server/http/bin/apxs --with-mysql=/server/mysql --with-gd --with-jpeg-dir=/usr/local/bin --with-zlib-dir=/usr/local/bin --with-freetype-dir --with-xpm-dir=/usr/loacl/bin --with-t1lib --with-pdo-mysql=/server/mysql --enable-mbstring --with-svn=/server/svn --enable-memcache --with-imagick=/server/ImageMagick --with-pdflib=/usr/src/PDFlib-Lite-7.0.2p8/bind/c

推荐阅读