预览加载中,请您耐心等待几秒...
1/6
2/6
3/6
4/6
5/6
6/6

在线预览结束,喜欢就下载吧,查找使用更方便

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

1.mysql 具体安装过程省略,mysql已经安装完成,注意为了方便使用密码为空。 2.安装apache服务器 tar-zxvfhttpd-2.2.11.tar.gz cdhttpd-2.2.11 ./configure--prefix=/usr/local/apache--enable-module=so #注意安装apache至/usr/local/apache并配置apache允许运行时加载DSO模块。模块名称是mod_so make makeinstall 注释: ---------------------------------------------------------- --enable-module=so 注意:如果以前安装过httpd服务需要先卸载。 ---------------------------------------------------------- 3.安装perl模块 安装XPM rpm-ivhxpm-3.4k-2.i386.rpm 安装libxml tar-xjflibxml2-2.6.16.tar.bz2 cdlibxml2-2.6.16 ./configure--prefix=/usr/local/libxml2 make makeinstall 安装zlib tar-zxfzlib-1.2.2.tar.gz cdzlib-1.2 ./configure make makeinstall 安装jpeg tar-zxfjpegsrc.v6b.tar.gz cdjpeg-6b/ mkdir-p/usr/local/jpeg6/bin mkdir-p/usr/local/jpeg6/include mkdir-p/usr/local/jpeg6/lib mkdir-p/usr/local/jpeg6/man/man1 ./configure--prefix=/usr/local/jpeg6 make makeinstall-lib makeinstall 安装libpng: tar-zxflibpng-1.2.7-config.tar.gz cdlibpng-1.2.7-config ./configure--prefix=/usr/local/libpng2 make makeinstall 安装freetype: tar-zxffreetype-2.1.9.tar.gz cdfreetype-2.1.9 ./configure--prefix=/usr/local/freetype make makeinstall 安装Autoconf2.59 tar-zxfautoconf-2.59.tar.tar cdautoconf-2.59 ./configure make makeinstall 安装gd库: tar-xzfgd-2.0.35.tar.gz cdgd-2.0.35 ./configure--prefix=/usr/local/gd2--with-zlib=/usr/local/zlib2/--with- png=/usr/local/libpng2/--with-jpeg=/usr/local/jpeg6/--with- freetype=/usr/local/freetype/ make makeinstall 安装gd-gif库: tar-zxfgd-2.0.26gif.tar.gz cdgd-2.0.26gif ./configure make makeinstall 安装GD库: tar-zxfGD-2.35.tar.gz cdGD-2.35 perlMakefile.PL make makeinstall 4.安装php tar-zxvfphp-5.2.8.tar.gz cdphp-5.2.8 ./configure--prefix=/usr/local/php不换行使用空格链接下面参数 --with-apxs2=/usr/local/apache/bin/apxs不换行使用空格链接下面参数 --with-config-file-path=/usr/local/lib不换行使用空格链接下面参数 --with-mysql不换行使用空格链接下面参数 --with-libxml-dir不换行使用空格链接下面参数 --with-expat-dir不换行使用空格链接下面参数 --with-gd不换行使用空格链接下面参数 --with-jpeg-dir不换行使用空格链接下面参数 --with-zlib-