当前位置:   article > 正文

[Linux] linux设置网络代理wget yum apt_sudo vi /etc/wgetrc

sudo vi /etc/wgetrc

[1] 环境变量设置代理

$ sudo vim /etc/profile
增加如下两行

export http_proxy=http://ip:port
export https_proxy=http://ip:port

  • 1
  • 2
  • 3

[2] wget 代理

$ sudo vim /etc/wgetrc

export http_proxy=http://ip:port
export https_proxy=http://ip:port
  • 1
  • 2

[3] apt 设置代理

$ sudo vim /etc/apt/apt.conf
如果这个文件不存在就创建一个


Acquire::http::Proxy “http://proxyusr:password@proxy_id:port”;
或
Acquire::http::Proxy “http://proxy_id:port”;

Acquire::ftp::proxy "ftp://192.168.0.1:88/";

Acquire::https::proxy "https://192.168.0.1:88/";
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

[4] yum 代理设置

sudo vim /etc/yum.conf
中加入下面

proxy=http://ip:port
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/168710
推荐阅读
相关标签
  

闽ICP备14008679号