# pwd /var/data/mkpackage/bind-9-3-2 # cp /home/tar_dir/bind-9.3.2.tar.gz . # ls -l | sed -e 1d -rw-r--r-- 1 root root 5302112 Feb 28 20:40 bind-9.3.2.tar.gz
展開伸長 なんて言うのだろう とにかく 解凍とかします。 ついでに 現在の インストールされている bind (named) の ヴァージョンも 調べておきましょう。
# tar xvzpf bind-9.3.2.tar.gz 2>&1 | tee b_untar # cd bind-9.3.2 # named -v BIND 9.2.3
現在 インストールされているものは BIND 9.2.3 みたいです。少し configure 関連の内容を 見ておきましょう 和猫 には きついのですが
By default, installation is into /usr/local, but this can be changed with the "--prefix" option when running "configure". For backwards compatibility with BIND 8, --sysconfdir defaults to "/etc" and --localstatedir defaults to "/var" if no --prefix option is given.
ということのようです。さっぱりわかんね! ほたら
”configure” するだべさ
# ./configure 2>&1 |tee c_bind_conf_log # mv c_bind_conf_log ../
そんで もって
# make 2>&1 | tee d_bind_make_log
通常はここで make installすれば 良いのですが 今回は 無謀にも package を 作成してみましょう 習うより 馴れです
にゃんたろう 拝!
2006年 4月12日 (水) 22:45:17 JST 作成