install php from source
2008年08月08日 (linux)
command
# cd /usr/local/src # tar zxvf php-5.2.6.tar.gz # cd php-5.2.6 # ./configure \ --with-pgsql=/usr/local/pgsql \ --with-apxs2=/usr/local/apache2/bin/apxs \ --enable-mbstring # make # make test # make install
PR
install apache from source
2008年08月08日 (linux)
command
# cd /usr/local/src # tar zxvf httpd-2.9.9.tar.gz # cd httpd-2.9.9 # ./configure # make # make install
install postgresql from source
2008年08月08日 (linux)
command
# cd /usr/local/src # tar zxvf postgresql-8.3.3.tar.gz # cd postgresql-8.3.3 # ./configure --without-readline --without-zlib # make # make install
install libxml2 from source
2008年08月08日 (linux)
commmand
# cd /usr/local/src # tar zxvf libxml2-2.6.32.tar.gz # cd libxml2-2.6.32 # ./configure # make # make install
install zsh from source
2008年08月08日 (linux)
command
# cd /usr/local/src # tar zxvf zsh.tar.gz # cd zsh-4.2.7 # ./configure # make # make install # whereis -b zsh zsh: /usr/local/bin/zsh /usr/local/lib/zsh # echo "/usr/local/bin/zsh" >>/etc/shells