1. 程式人生 > >Ubuntu終端使用的proxy的設定

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

然後重啟計算機。