Step 1:
Open a terminal CTRL+ALT+T and enter
sudo -i;
You are now logged in as root so have the permissions required to save the files. Keep the terminal open. Type:
gedit /etc/environment
In the window that opens add the following lines modifying as appropriate to the file.
By which I mean your proxy is probably not called myproxy.server.com:8080
use the proxy settings from your windows machine.
http_proxy=http://myproxy.server.com:8080/
https_proxy=http://myproxy.server.com:8080/
ftp_proxy=http://myproxy.server.com:8080/
no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
HTTP_PROXY=http://myproxy.server.com:8080/
HTTPS_PROXY=http://myproxy.server.com:8080/
FTP_PROXY=http://myproxy.server.com:8080/
NO_PROXY="localhost,127.0.0.1,localaddress,.localdomain.com"
Save and close gedit.
Internet should now be working (next time you reboot) but you won't get any updates to fix this in the terminal you opened before type
gedit /etc/apt/apt.conf.d/95proxies
A new window will open add the following lines modifying as appropriate
Acquire::http::proxy "http://myproxy.server.com:8080/";
Acquire::ftp::proxy "ftp://myproxy.server.com:8080/";
Acquire::https::proxy "https://myproxy.server.com:8080/";
Save then close the terminal and reboot. All should now work as expected.
wget http://it.wikipedia.org
Does it return any error messages? – ignis Jun 26 '13 at 09:26