Debuginfo

思考とアウトプット

2012-01-14から1日間の記事一覧

Install daemontools on CentOS

yumのレポジトリに入っていないらしい。 # cd /usr/local/src/; wget http://mirrors.qmailtoaster.net/daemontools-toaster-0.76-1.3.6.src.rpm # rpmbuild --rebuild daemontools-toaster-0.76-1.3.6.src.rpm # rpm -ivh /usr/src/redhat/RPMS/x86_64/daem…

DBD::mysql failed to install with cpanm

下記のようにFAILしてしまう。 > cpanm DBD::mysql > Working on DBD::mysql Fetching http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/DBD-mysql-4.020.tar.gz ... OK Configuring DBD-mysql-4.020 ... OK Building and testing DBD-mysql-4.020 ...…

iptables on CentOS

参考HPのコピペです。scriptで設定する方法。 #!/bin/bash #設定開始 # インターフェース名定義 LAN=eth0 # 設定終了 # 内部ネットワークのネットマスク取得 LOCALNET_MASK=`ifconfig $LAN|sed -e 's/^.*Mask:\([^ ]*\)$/\1/p' -e d` # 内部ネットワークアド…