私は次のコマンドを試しました:
$ wget -q --tries=10 --timeout=20 --spider http://google.com
(- this SO post から。bashでインターネット接続を確認したい。)
次の出力が表示されます。
Spider mode enabled. Check if remote file exists.
--2015-09-28 09:55:50-- http://google.com/
Connecting to 127.0.0.1:3128... connected.
Proxy request sent, awaiting response... 302 Found
Location: http://www.google.de/?gfe_rd=cr&ei=k_IIVreaN-yH8Qfe1Yu4CA [following]
Spider mode enabled. Check if remote file exists.
--2015-09-28 09:55:50-- http://www.google.de/?gfe_rd=cr&ei=k_IIVreaN-yH8Qfe1Yu4CA
Connecting to 127.0.0.1:3128... connected.
Proxy request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Remote file exists and could contain further links,
but recursion is disabled -- not retrieving.
OKのようですが、Sudo
でcmdを実行すると、これを受け取ります:
Spider mode enabled. Check if remote file exists.
--2015-09-28 09:55:27-- http://google.com/
Resolving google.com (google.com)... failed: Name or service not known.
wget: unable to resolve Host address ‘google.com’
Sudo
で呼び出すスクリプトにこの行が必要なので、常に失敗します。
この理由を誰かに教えてもらえますか?どうすれば回避できますか?
環境にプロキシが定義されています。あなたのものは127.0.0.1:3128
のようです。
Sudo
を実行すると、プロキシ環境変数が渡されないため、google.com
を直接解決できません。
次のコマンドを使用して、環境変数で定義したプロキシを確認できます。
env | grep proxy
注:Sudo
にHTTPプロキシ環境変数を渡したい場合は、次を試してください:
Sudo http_proxy="$http_proxy" wget -q --tries=10 --timeout=20 --spider http://google.com
Sudo -E
を使用してすべての環境変数を渡すこともできます。
Sudo -E wget -q --tries=10 --timeout=20 --spider http://google.com