操作系统,Web服务器,辅助小脚本
Linux下的PHP+MySQL环境安装
首先要保证安装了pcre和gcc,make sudo pacman -S pcre sudo pacman -S gcc sudo pacman -S make 现在来安装nginx0.8.0 ./configure –prefix=/opt/nginx-0.8 –user=web –group=web \ –with-pcre –with-debug \ –with-mail –with-mail_ssl_module make && make install groupadd mysql useradd mysql -G mysql ./configure –prefix=/opt/mysql-5.1 –with-mysqld-user=mysql \ –with-charset=utf8 –with-extra-charset=all \ –enable-thread-safe-client –enable-local-infile \ –with-fast-mutexes –with-low-memory –with-comment \ –with-embedded-server –without-docs –without-man /opt/mysql-5.1/bin/mysql_install_db chown -R mysql [...]