Debianのインストール中に、入力したhttp://user:password@Host:port/
の形式の標準プロキシ文字列を要求されました。 apt-getは更新中にファイルを実行および取得し、現在Debianがインストールされています。しかし、Sudo apt-get install ...
を実行しようとすると、メッセージCould not resolve proxy_Host
を含むエラーメッセージが表示されます。ここで、proxy_Host
は、インストール中に入力したホストです。
プロキシ情報を設定する必要がある他の場所はありますか?
セットアップ中に入力されたhttpプロキシ情報は、(通常)ファイル/etc/apt/apt.conf
Acquire::http::Proxy "http://user:password@Host:port/";
以下は、一般的なプロキシ、apt、wgetの場合で、user:password@
を必要としないプロキシの場合は削除できます。
一般的なプロキシの場合:
touch /etc/profile.d/proxy.sh
以下を追加します。
export ftp_proxy=ftp://user:password@Host:port
export http_proxy=http://user:password@Host:port
export https_proxy=https://user:password@Host:port
export socks_proxy=https://user:password@Host:port
APTプロキシの場合:
touch /etc/apt/apt.conf.d/99HttpProxy
以下を追加します。
Acquire::http::Proxy "http://user:password@Host:port";
Wgetの場合:
nano /etc/wgetrc
プロキシ行を見つけてコメントを外すか、存在しない場合は追加します
http_proxy = http://user:password@Host:port
https_proxy = ...
...