Updated Linux (markdown)

master
Hunter Long 2018-06-25 19:49:02 -07:00
parent 126daa44b0
commit 5994484efe
1 changed files with 19 additions and 2 deletions

@ -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).