# Browse TOR via Commandline

```bash
apt-get install torsocks
```

if you haven't already enabled TOR, enable it via

```bash
systemctl enable --now tor
```

# Surf in commandline via Torsocks

In my experience the only commandline browser that works together with torsocks is w3m. First install w3m:

```bash
apt-get install w3m
```

then you can start surfing via:

```bash
torsocks w3m address.onion
```