⬅️ **[[$-Linux|Linux]]**
***
# Proxy einrichten
## Proxy for whole System
- Config in `/etc/environment`
```
http_proxy=<URL:Port>
https_proxy=
ftp_proxy=
```
## Proxy for Apt
```bash
sudo vim /etc/apt/apt.conf
Acquire::http::Proxy "http_proxy=http://proxy.bbn.hp.com:8080";
```