Ubuntu10.04 で wget コマンドをプロキシ経由で 使用するときのメモです。
環境変数で設定してやっても使えませんでした。
設定ファイルを変更します。
$ sudo vi /etc/wgetrc
次の赤字のように追加します。
# You can set the default proxies for Wget to use for http, https, # They will override the value in the environment. #https_proxy = http://proxy.yoyodyne.com:18023/ #http_proxy = http://proxy.yoyodyne.com:18023/ #ftp_proxy = http://proxy.yoyodyne.com:18023/ http_proxy = http://192.168.1.200:3128/ # If you do not want to use proxy at all, set this to off. #use_proxy = on use_proxy = on
これでOKです。
プロキシにユーザ認証が必要な場合は 次のようにコマンドでも渡すことができます。
$ wget --proxy-user=USERNAME \ --proxy-password=PASSWORD \ http://www.odin.hyork.net/