Other Help Topics :: HOWTO setup proxy



WGET proxy
============
scite /etc/wgetrc
edit the following lines
Code Sample

http_proxy = http://user:pass@xxx.xxx.xxx.xxx:port/
ftp_proxy = http://user:pass@xxx.xxx.xxx.xxx.port/
use_proxy = on


Apt-get proxy
============
scite /etc/apt/apt.conf
add
Code Sample

Acquire::http::Proxy "http://user:pass@xxx.xxx.xxx.xxx:port/";
Acquire::ftp::Proxy "http://user:pass@xxx.xxx.xxx.xxx:port/";


original here.