If you run your Ubuntu system behind a firewall and have to use proxy server for http and ftp access, then your apt-get on a newly installed Ubuntu system will probably not work.
To make it use proxy, simply set the http_proxy environment variable. Once you get it working (try something like apt-get update), you'll probably want to add it to your .bashrc file.
Setting the http_proxy variable
Here's how you set the variable:
bash$ export http_proxy=http://proxy:8080
If you're required to use your username and password for your proxy, they can be specified this way. Obviously, port 8080 can and should be replaced with the valid port for your proxy server (sometimes it's 3128):
bash$ export http_proxy=http://username:password@proxy:8080
Dean says
This did not work for me.
Dean says
The author of this article was very kind to help me resolve this, which was so nice! My install of kubuntu didn't accept web based updates to apt-get, because I was behind a proxy, and commented them out of /etc/apt/sources.list, which the author helped me figure out. Cool!
Gleb Reys says
Always a pleasure to help, Dean!
Thushara says
It's working. Thnx. Ummmmmmmmah
Gleb Reys says
Such a simple fix, and such a relief when it finally works. Glad your problem is sorted!
Shrik says
Doesn't work for me; i get the error 407 Proxy Authentication required
Gleb Reys says
Hi Shrik,
This is because your proxy server is password protected – not much you can do unless you specify your credentials.
Lanre says
Guy,
I am really grateful for this fix. just a simple code and it does all the magic.
Thanks a Lot!!!