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 执行后,环境变量已经起作用。

然后用wget下载文件:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb --no-check-certificate

成功下载。


如果想在全系统范围内使用,可以将上面的配置放在/etc/environment文件中,但是不要添加export

然后重启计算机。

你可能感兴趣的:(Linux)