From 5994484efee3702a7425c878143248ed456ed2ea Mon Sep 17 00:00:00 2001 From: Hunter Long Date: Mon, 25 Jun 2018 19:49:02 -0700 Subject: [PATCH] Updated Linux (markdown) --- Linux.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/Linux.md b/Linux.md index 9e6d80c..f5b7a6a 100644 --- a/Linux.md +++ b/Linux.md @@ -1,5 +1,22 @@ # Installing on Linux - +Installing Statup on Linux is a 1 line command. It's that easy. ``` bash <(curl -s https://statup.io/install.sh) -``` \ No newline at end of file +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). \ No newline at end of file