I'm currently behind a proxy at my university. I can access the www on this computer by changing chromium's proxy settings.
I can also use the command line apt-get only by running this function each time:
function uniproxy()
{
read -s -p ">> " mypassword
export http_proxy=http://myusername:$mypassword@wwwproxy.stuff.is.here:8000
export https_proxy=http://myusername:$mypassword@wwwproxy.stuff.is.here:8000
export ftp_proxy=http://myusername:$mypassword@wwwproxy.stuff.is.here:8000
echo ""
}
When I change preferences>networks proxy appropriately, it won't let me use command-line apt-get. More importantly though, update manager cannot connect even when I change the aforementioned settings. I also changed the synaptic settings to see if that would help, but alas - update manager won't connect.
How can I resolve this?