本节内容:
Ubuntu终端配置proxy代码。
查看当前用户下的配置文件,比如~/.bashrc中添加几行:
复制代码 代码示例:
export http_proxy=http://proxy.yourcompany.com:8081/
export ftp_proxy=http://proxy.yourcompany.com:8081/
export https_proxy=http://proxy.yourcompany.com:8081/
source ~/.bashrc 执行后,环境变量即开始作用。
然后,使用linuxjishu/14085.html target=_blank class=infotextkey>wget命令下载文件:
复制代码 代码示例:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb --no-check-certificate
成功下载。
另外,如果想在全系统范围内使用,可以将上面的配置放在/etc/environment文件中,但是不要添加export。
最后,重启计算机:reboot 。