# One-click Linux Proxy

**Run this command to instantly start a proxy server and enable it for Linux. This will run the client and also auto-configure it for compatible traffic through WiFi. For Ethernet, check your OS settings.**

```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/anyone-protocol/anon-install/main/linux/start_proxy.sh)"
```

Press '**Cmd+C**' to Cancel and disable proxy.

***

### Read Me

This command runs a script that downloads a executable Anyone client from [GitHub](https://github.com/anyone-protocol/ator-protocol/releases/) and executes the client with the configuration below:

```
SocksPort 127.0.0.1:9050
SocksPolicy accept 127.0.0.1
SocksPolicy reject *
HTTPTunnelPort auto
```

The script automatically configures proxy settings on the Wi-Fi interface and enables the proxy.

```bash
gsettings set org.gnome.system.proxy mode 'manual'
gsettings set org.gnome.system.proxy.http host '127.0.0.1'
gsettings set org.gnome.system.proxy.http port 9058
```

The script disables the proxy when '**Cmd+C**' is initiated.

```bash
gsettings set org.gnome.system.proxy mode 'auto'
gsettings reset org.gnome.system.proxy.http host
gsettings reset org.gnome.system.proxy.http port
```
