在公司使用網路,通常需要透過 Proxy ,但以前在使用 apt-get /yum 時候都以為公司會阻擋就只能透過其他方式去下載檔案(如 手機上網),同事 Danny 仔細研究後發現 apt-get / yum 還是走 http 的協定方式,我們一般上網就可以看到檔案,沒有道理透過 apt-get /yum 會沒有辦法使用,解決方式也很簡單,為 apt-get /yum 設定 http-proxy 即可.
-
export http_proxy
我同事 Danny 是直接在 ~/.bashrc 直接加入 http-proxy 的設定.
#vi ~/.bashrc export http_proxy="http://username:password@proxy.server:port"
設定就很簡單,只需要你平時透過 proxy 上網的帳號密碼 ttp://username:password 以及 proxy server 網址 @proxy.server:port 就可以了.
-
Ubuntu – apt , apt-get
新增下面設定至檔案 /etc/apt/apt.conf
#vi /etc/apt/apt.conf Acquire::http::Proxy "http://username:password@proxy.server:port/";
參數的使用如同剛剛的說明.
-
CentOS – yum
新增下面設定至檔案 /etc/yum.conf
#vi /etc/yum.conf proxy=http://proxy.server:port proxy_username=username proxy_password=userpassword
參數的使用如同剛剛的說明.
沒有解決問題,試試搜尋本站其他內容
2 thoughts on “Linux 透過 Http-proxy 使用 apt-get 與 yum”