This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # Einrichtung ## Netzwerk Der kürzeste und schnellste Weg, Netzwerkeinstellungen vorzunehmen, ist wie immer über die Konsole. Die Datei `/etc/profile` bzw. `/etc/environment` (Lubuntu) enthält systemweite Variablen (Systemvariablen), die beim booten initialisiert werden. Diese Datei wird modifiziert. [Environment Variablen](https://help.ubuntu.com/community/EnvironmentVariables) ### Proxy Füge die folgenden Zeilen hinzu. Und ja: Die Variablen müssen doppelt geschrieben werden, da einige Programme nach den Variablennamen in Großbuchstaben, andere jedoch in Kleinbuchstaben suchen. ``` 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" ``` ``` export http_proxy=http://myproxy.server.com:8080/ export https_proxy=http://myproxy.server.com:8080/ export ftp_proxy=http://myproxy.server.com:8080/ export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com" export HTTP_PROXY=http://myproxy.server.com:8080/ export HTTPS_PROXY=http://myproxy.server.com:8080/ export FTP_PROXY=http://myproxy.server.com:8080/ export NO_PROXY="localhost,127.0.0.1,localaddress,.localdomain.com" ``` ### apt Leider lesen diese Programme die Umgebungsvariablen auch nicht aus, so dass wir diese auf eine andere Weise bekannt machen müssen. In '' /etc/apt/apt.conf.d/ '' erstelle die Datei `95proxies` oder `proxy.conf` (ausprobieren) und schreibe folgende Zeilen: Acquire::http::proxy "http://myproxy.server.com:8080/"; Acquire::ftp::proxy "ftp://myproxy.server.com:8080/"; Acquire::https::proxy "https://myproxy.server.com:8080/"; \<WRAP center round important 100%\> Achte hierbei genau auf die doppelten Doppelpunkte und Semikolon am Ende jeder Zeile. \</WRAP\>