Editer le fichier /etc/apt/apt.conf
Pour un proxy sans authentification
Acquire::http::Proxy "http://IP.DU.PROXY:PORT";
Pour un proxy avec authentification
Acquire::http::Proxy "http://user:passwd@IP.OU.NOM.DNS.DU.PROXY:PORT";
Saisir dans une console
$ http_proxy="http://user:passwd@IP.OU.NOM.DNS.DU.PROXY:PORT" sudo apt-get update
Saisir dans une console
$ export http_proxy="http://user:passwd@IP.OU.NOM.DNS.DU.PROXY:PORT"
$ sudo apt-get update
$ sudo apt-get install mon_paquet...