Hello I need to find out how to enable a system wide proxy in xubuntu 10.10
Asked
Active
Viewed 2.2k times
7
-
I am not sure that this question is clear. What is the proxy suppose to do? - Please add some more information that realistic answers can be given. – txwikinger Oct 13 '10 at 20:19
-
4I think it is reasonably clear the user is looking for an Xubuntu alternative to Ubuntu/Gnome's System->Preferences->Network Proxy – 8128 Oct 18 '10 at 19:50
3 Answers
7
Whilst the the other answers are good & ok (for terminal/bash prompts), in my opinion the correct place to add these are /etc/environment
.
Use sudo
or gksu
then add:
http_proxy="http://user:password@proxyserver:port"
https_proxy="http://user:password@proxyserver:port"
ftp_proxy="http://user:password@proxyserver:port"
Very similar but for those who run everything from within a term then yes the other answers will give results but for those in GUI land would be better off adding the above line to the environment file for full correct system wide usage.

fossfreedom
- 172,746

t0m5k1
- 81
-
You must also want to mention the capital lettered version of the above. – Renae Lider Sep 19 '14 at 08:45
6
Add to following lines to your ~/.bashrc file:
export http_proxy="http://user:password@proxyserver:port"
export https_proxy="http://user:password@proxyserver:port"
export ftp_proxy="http://user:password@proxyserver:port"

8128
- 28,740

borjacampina
- 1,054
-
-
Wouldn't you simply add them to /etc/bash.bashrc then to make it system wide? – charlie-tca Nov 09 '10 at 15:03
1
there is a graphical tool called UbProxy, that sets the whole systema proxy, via a graphical interface (GUI). The only problem for me, was I have to log out my user and log in again to load the config. Is very simple to use. https://code.google.com/p/ubproxy/

Sergio
- 121