我總是在 Windows 以及以前版本的 Ubuntu 中使用代理連接到互聯網,但在 Ubuntu 11.10 中,我在 GUI 中設定的代理設定似乎並未在系統範圍內應用。
我可以使用 Firefox 自帶的代理設定來存取互聯網。我可以在終端機中存取互聯網(即我可以使用 apt-get 來運行一些小程式)。但在 Ubuntu 軟體中心或更新管理器中它不起作用。
答案1
我第一次安裝 Ubuntu 11.10 時遇到了這個問題。我不知道以下哪個步驟解決了這個問題,但這就是我所做的:
打開終端
運行
export HTTP_PROXY=http://<myproxy>:<port>
以設定該終端會話的代理伺服器跑步
sudo apt-get update
此時,更新管理器彈出並詢問我是否要安裝c。 300 次更新,我做到了
重新開始
安裝
dconf
與sudo apt-get install dconf-tools
運行
dconf-editor
,選擇system
>>proxy
並http
點擊enable
(根據 teleblog 答案中的教程)
現在一切似乎都有效了:)
答案2
本教程對我有用:
第一的。您必須透過以下方式安裝 dconf-tools:
sudo apt-get install dconf-tools
第二。運行 dconf-tool 的方式:
dconf-editor
第三。在配置編輯器選單中選擇系統>>代理
Goto “system >> proxy” change “mode” to manual and select “use-same-proxy“.
Goto “system >> proxy >> http” give your proxy information there and select “enable” option.
Goto “system >> proxy >> https” give your proxy information there, do the same things on ftp part.
Make sure socks have “0” (zero) on “port” and nothing on “Host” field.
http://loewyi.com/info/proxy-problem-google-chrome-ubuntu-11-10/
答案3
進入系統設定>網路。您可以在那裡手動調整代理設定。
答案4
您應該由 root 使用者匯出代理
只需在終端機輸入:
sudo -s
export http_proxy=http://yourdomain.com:port
apt-get update