mirror of https://github.com/statping/statping
Updated Linux (markdown)
parent
126daa44b0
commit
5994484efe
21
Linux.md
21
Linux.md
|
@ -1,5 +1,22 @@
|
||||||
# Installing on Linux
|
# Installing on Linux
|
||||||
|
Installing Statup on Linux is a 1 line command. It's that easy.
|
||||||
```
|
```
|
||||||
bash <(curl -s https://statup.io/install.sh)
|
bash <(curl -s https://statup.io/install.sh)
|
||||||
```
|
statup version
|
||||||
|
```
|
||||||
|
|
||||||
|
## Raspberry Pi
|
||||||
|
You can even run Statup on your Raspberry Pi by installing the precompiled binary from [Latest Releases](https://github.com/hunterlong/statup/releases/latest). For the Raspberry Pi 3 you'll want to download the `statup-linux-arm7.tar.gz` file. Be sure to change `VERSION` to the latest version in Releases, and include the 'v'.
|
||||||
|
|
||||||
|
```
|
||||||
|
VERSION=v0.24
|
||||||
|
wget https://github.com/hunterlong/statup/releases/download/$VERSION/statup-linux-arm7.tar.gz
|
||||||
|
tar -xvzf statup-linux-arm7.tar.gz
|
||||||
|
chmod +x statup
|
||||||
|
mv statup /usr/local/bin/statup
|
||||||
|
|
||||||
|
statup version
|
||||||
|
```
|
||||||
|
|
||||||
|
## Alpine Linux
|
||||||
|
The Docker image is using the Statup Alpine binary since it's so incredibly small. You can run it on your own alpine image by downloading `statup-linux-alpine.tar.gz` from [Latest Releases](https://github.com/hunterlong/statup/releases/latest).
|
Loading…
Reference in New Issue