« CFのバックアップ | メイン | MP3の再生とストリーミング再生 »
2005年11月10日
IRCDのインストール
IRCDとはチャットするサーバのこと
ソースの入手先
http://www.ircnet.jp/
# tar zxvf irc2.10.3p7+jp6.tgz
# cd irc2.10.3p7+jp6
# ./configure
# cd armv4tl-unknown-linux-gnu
# make all
# make install
設定
/usr/local/etc/ircd.confの内容↓
M:localhost::Japan:6667
A:hoge - Japan:hoge
P::::6667:
Y:1:90::50:512000::
I:*@*::*@*::1
自動起動
/etc/init.d/ircdのシェルスクリプト↓
#!/bin/sh
if test -f /usr/local/sbin/ircd ; then
echo "Starting IRCD..."
else
/usr/local/sbin/ircd
fi
exit 0
# ln -s /etc/init.d/ircd /etc/rc2.d/S98ircd
投稿者 chihansen : 2005年11月10日 01:29