Add minimal user setup for linux
This commit is contained in:
parent
42deb58fac
commit
7d97e3115d
18
Readme.md
18
Readme.md
|
@ -2,6 +2,24 @@
|
|||
|
||||
The next generation OONI Probe Command Line Interface.
|
||||
|
||||
## User setup
|
||||
|
||||
1. Go [into the releases](https://github.com/ooni/probe-cli/releases) and download the release for your architecture and platform
|
||||
|
||||
2. Extract the tarball with `tar xvzf ooniprobe_*.tar.gz`
|
||||
|
||||
3. Copy the `ooniprobe` binary into a location in your `$PATH`, for example `/usr/local/bin/ooniprobe`
|
||||
|
||||
4. Run `ooniprobe run` to perform all the tests
|
||||
|
||||
Optional:
|
||||
|
||||
Add a crontab entry (on linux) to run `ooniprobe` daily at a random time:
|
||||
|
||||
```
|
||||
(crontab -l 2>/dev/null; echo "$(( ( RANDOM % 60 ) + 1 )) $(( ( RANDOM % 24 ) + 1 )) * * * ooniprobe run") | crontab -
|
||||
```
|
||||
|
||||
## Development setup
|
||||
|
||||
Be sure you have golang >= 1.13. We use Go modules. Make sure you
|
||||
|
|
Loading…
Reference in New Issue
Block a user