mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
38 lines
478 B
Plaintext
38 lines
478 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# tor
|
|
|
|
> Enable anonymous communication through the Tor network.
|
|
> More information: <https://manned.org/tor>.
|
|
|
|
- Connect to the Tor network:
|
|
|
|
`tor`
|
|
|
|
- View Tor configuration:
|
|
|
|
`tor --config`
|
|
|
|
- Check Tor status:
|
|
|
|
`tor --status`
|
|
|
|
- Run as client only:
|
|
|
|
`tor --client`
|
|
|
|
- Run as relay:
|
|
|
|
`tor --relay`
|
|
|
|
- Run as bridge:
|
|
|
|
`tor --bridge`
|
|
|
|
- Run as a hidden service:
|
|
|
|
`tor --hidden-service`
|