安装GD-------------------------------------------------------------------- tar -zxvf gd-2.0.27.tar.gz cd gd-2.0.27 ./configure --prefix=/usr/local/gd2 make make install 安装PHP------------------------------------------------------------------- tar zxvf php-4.3.8.tar.gz cd php-4.3.8 ./configure --with-mysql --with-gd=/usr/local/gd2 --with-apxs2=/usr/www/bin/apxs m...[ 查看全文 ]
代码如下: groupadd mysql //建立mysql用户组 useradd -g mysql mysql //建立mysql帐户 tar -zxvf mysql-x.x.xx.tar.gz //解压缩mysql cd mysql-5.0.45 //进入解压好的mysql目录 ./configure –prefix=/usr/local/mysql –with-charset=utf8 –with-collation=utf8_general_ci –with-extra-charsets=latin1 //设置参数 make make install //开始安装 cp support-files/...[ 查看全文 ]