忍者ブログ

[PR]

2025年01月19日 ()
×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

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