Por lo que entiendo, establecer proxies en todo el sistema a través de esa GUI hace tres cosas:
- Establezca los valores correspondientes en la base de datos dconf.
- Establecer los valores en
/etc/environment
.
- Establecer los valores en
/etc/apt/apt.conf
.
1 y 3 surten efecto inmediatamente. /etc/environment
se analiza al iniciar sesión, por lo que deberá cerrar sesión e iniciar sesión para que surta efecto. (Tenga en cuenta que esto es un inicio de sesión correcto, no simplemente ejecutar un shell de inicio de sesión). El siguiente script debe ser equivalente (suponiendo servidores proxy http / https):
#! /bin/bash
HTTP_PROXY_HOST=proxy.example.com
HTTP_PROXY_PORT=3128
HTTPS_PROXY_HOST=proxy.example.com
HTTPS_PROXY_PORT=3128
gsettings set org.gnome.system.proxy mode manual
gsettings set org.gnome.system.proxy.http host "$HTTP_PROXY_HOST"
gsettings set org.gnome.system.proxy.http port "$HTTP_PROXY_PORT"
gsettings set org.gnome.system.proxy.https host "$HTTPS_PROXY_HOST"
gsettings set org.gnome.system.proxy.https port "$HTTPS_PROXY_PORT"
sudo sed -i.bak '/http[s]::proxy/Id' /etc/apt/apt.conf
sudo tee -a /etc/apt/apt.conf <<EOF
Acquire::http::proxy "http://$HTTP_PROXY_HOST:$HTTP_PROXY_PORT/";
Acquire::https::proxy "http://$HTTPS_PROXY_HOST:$HTTPS_PROXY_PORT/";
EOF
sudo sed -i.bak '/http[s]_proxy/Id' /etc/environment
sudo tee -a /etc/environment <<EOF
http_proxy="http://$HTTP_PROXY_HOST:$HTTP_PROXY_PORT/"
https_proxy="http://$HTTPS_PROXY_HOST:$HTTPS_PROXY_PORT/"
EOF
Aunque requiere un reinicio de sesión para que PAM se aplique en /etc/environment
todas partes, en un shell actual aún puede extraer los valores en ese archivo:
export http_proxy=$(pam_getenv http_proxy)
sudo service network manager restart
.