トップ «前の日記(2007-03-18(Sun)) 最新 次の日記(2007-03-27(Tue))»

PC関係のメモ


2007-03-19(Mon) [長年日記]

_ [Server]CentOS 4.4にRast 0.3.1をインストール

nkfが必要なので先にnkfをインストール。

tar xvfz nkf207.tar.gz
cd nkf207
make
mv nkf /usr/bin/

rastインストール

wget http://projects.netlab.jp/rast/archives/rast-0.3.1.tar.bz2
tar xvfj rast-0.3.1.tar.bz2
cd rast-0.3.1
./configure \
 --with-apr-config=/usr/local/apache2/bin/apr-config \
 --with-apu-config=/usr/local/apache2/bin/apu-config
make
make install

/etc/ld.so.confに下記を追加

/usr/local/lib
/usr/local/apache2/lib/

設定を反映

ldconfig
[]