Dell Optiplex GXa Solaris 8  x86  6/00

戻る




wget-1.8.2


wget : ファイルのダウンロードツール
最近のLinuxなどには大抵標準でインストールされているが、Solaris8にはあり得ない
ツール。ftpよりもずっと便利な上に、httpで配布されるソフトウェアもダウンロード
が簡単にできるので、是非揃えておきたい物の一つ。
GNUプロジェクトから配布されている。


必要なソフトウェア:  wget-1.8.2.tar.gz  (28.May.2002 Release)
パッケージでも配布されているが、バージョンが古くなったのでソースから
インストールした。

本家
	ftp://ftp.gnu.org/gnu/wget/

国内ミラー
	ftp://tron.um.u-tokyo.ac.jp/pub/GNU/prep/wget/
	ftp://core.ring.gr.jp/pub/GNU/wget/
	ftp://ftp.ring.gr.jp/pub/GNU/wget/
	ftp://mirrors.hbi.co.jp/gnu/wget/
	ftp://ftp.ayamura.org/pub/gnu/wget/
	ftp://ftp.cs.titech.ac.jp/pub/gnu/wget/


準 備

作業ディレクトリを作成する。
	$ mkdir /opt/src/wget-1.8.2

作業ディレクトリに移動する。
	$ cd /opt/src/wget-1.8.2

アーカイブをダウンロードする。
ここからネットワーク的に近いのは、東京工業大学か東京大学なので、今回は東京工業大学
ミラーからダウンロードする。
	$ ftp ftp.cs.titech.ac.jp

	Connected to serve.cs.titech.ac.jp.
	220 serve FTP server ready.
	Name (ftp.cs.titech.ac.jp:you): anonymous
	331 Guest login ok, send your complete e-mail address as password.
	Password: you@domain1.com
	230 Guest login ok, access restrictions apply.
	ftp> bin
	200 Type set to I.
	ftp> hash
	Hash mark printing on (8192 bytes/hash mark).
	ftp> cd pub/gnu/wget
	250 CWD command successful.
	ftp> get wget-1.8.2.tar.gz
	200 PORT command successful.
	150 Opening BINARY mode data connection for wget-1.8.2.tar.gz (1154648 bytes).
	#######################################################################
	226 Transfer complete.
	local: wget-1.8.2.tar.gz remote: wget-1.8.2.tar.gz
	1154648 bytes received in 13 seconds (89.76 Kbytes/s)
	ftp> bye
	221-You have transferred 1154648 bytes in 1 files.
	221-Total traffic for this session was 1155134 bytes in 1 transfers.
	221-Thank you for using the FTP service on serve.
	221 Goodbye.

ダウンロードしたアーカイブを解凍展開する。
	$ tar xozf  wget-1.8.2.tar.gz


インストール

解凍展開されたディレクトリに移動する。
	$ cd wget-1.8.2/

最適化スクリプトを実行する。
	$ ./configure --with-ssl=/usr/local/ssl

コンパイルする。
	$ make

SuperUserになる。
	$ su
	password: ********
	#

インストールする。
	# make install
	# exit
	$


確 認

パス確認
	$ which wget
	/usr/local/bin/wget

バージョン確認
	$ wget -V
	GNU Wget 1.8.2

	Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	Originally written by Hrvoje Niksic .