0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windows proxy環境下で Visual Staudio Codo の Remote Development で WSLに接続しようとした時エラーが出た話

Last updated at Posted at 2019-11-13

目的

  • proxy環境下でVisual Staudio Codo の Remote Development で WSLに接続したところエラーがでて接続できなかった時の筆者の解決方を書く。

解決法

  1. 下記コマンドを実行して設定ファイルを開く。

    $ sudo vi /etc/apt/apt.conf
    
  2. 最終行に下記の内容を追記する。

    Acquire::http::proxy "httpのプロキシアドレス";
    Acquire::https::proxy "httpsのプロキシアドレス";
    
  3. 下記コマンドを実行してwget用の設定ファイルを開く

    sudo vi /etc/wgetrc
    
  4. 最終行に下記の内容を追記する。

    https_proxy = プロキシアドレス
    http_proxy = プロキシアドレス
    ftp_proxy = プロキシアドレス
    use_proxy = on
    
  5. 再度接続を試みたところ正常にRemote DevelopmentでWSLに接続することができた。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?