既に gunzip 処理をしているのですが 最初から
場所は ここで無くても 良いのですが
# pwd && ls -l | sed 1d /usr/local/src/006_samba -rw-r--r-- 1 fdopstm users 189 Jan 19 23:19 samba-3.0.28.tar.asc -rw-r--r-- 1 fdopstm users 18159912 Jan 19 23:18 samba-3.0.28.tar.gz
gunzip 処理をしました ということでした
# gunzip samba-3.0.28.tar.gz # ls -l | sed 1d -rw-r--r-- 1 fdopstm users 47595520 Jan 19 23:18 samba-3.0.28.tar -rw-r--r-- 1 fdopstm users 189 Jan 19 23:19 samba-3.0.28.tar.asc
したがって 今回は
# tar xvf samba-3.0.28.tar 2>&1 | tee samba_untar # ls -l | sed 1d drwxr-xr-x 9 783 783 4096 Dec 11 01:04 samba-3.0.28/ -rw-r--r-- 1 fdopstm users 47595520 Jan 19 23:18 samba-3.0.28.tar -rw-r--r-- 1 fdopstm users 189 Jan 19 23:19 samba-3.0.28.tar.asc -rw-r--r-- 1 root root 125555 Jan 20 01:06 samba_untar
展開されたディレクトリに 移動します。
# cd samba-3.0.28
普通は README なんぞ と思いますが Manifest の 中に
Manifest
To build your own binary files you will need a suitable ansi C
compiler.
Samba uses the GNU autoconf system. In
order to build a default Samba for your platform cd into
the source/ directory and then type :
./configure
followed by :
make
To install the binaries built by the above type :
make install
then set up your configuration files.
という ものに 導かれて
./configure 、make と します、 オプションは無しで進めます
# cd source/ # ./configure 2>&1 | tee config-log # mv config-log ../../ # make 2>&1 | tee log_make-samba # mv log_make-samba ../../
さて 後は インストールです。
にゃんたろう 拝!
2008年 1月22日 (火) 23:24:21 JST