proxy
Configure proxy for apt
If your site use a HTTP/FTP proxy to use apt-* you must set the following enviroment variable http_proxy ftp_proxy
You can make this setting site wide creating the following files
[root@ce-02 profile.d]# cat /etc/profile.d/http_proxy.sh export http_proxy=http://proxy.site.net:3128 export ftp_proxy=http://proxy.site.net:3128 [root@ce-02 profile.d]# cat /etc/profile.d/http_proxy.csh setenv http_proxy http://proxy.site.net:3128 setenv ftp_proxy http://proxy.site.net:3128
