diff options
author | psychocrypt <psychocryptHPC@gmail.com> | 2018-04-01 11:27:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-01 11:27:57 +0200 |
commit | b2ee59bb8010a64b539530ea273141f16b2fdd74 (patch) | |
tree | 2d681c24f39cd39c5868a36f63687cb002918c37 /doc | |
parent | 99493cb70253cb43e9d00cec02f4bf6d18600841 (diff) | |
parent | c7cad8721e3c6f28482ffc41f952216ea985a1bb (diff) | |
download | xmr-stak-b2ee59bb8010a64b539530ea273141f16b2fdd74.zip xmr-stak-b2ee59bb8010a64b539530ea273141f16b2fdd74.tar.gz |
Merge pull request #1267 from fireice-uk/topic-rm-portbin
Remove portbin from docs for now
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Linux_deployment.md | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/doc/Linux_deployment.md b/doc/Linux_deployment.md deleted file mode 100644 index 3219e8a..0000000 --- a/doc/Linux_deployment.md +++ /dev/null @@ -1,27 +0,0 @@ -# Deploying portable **XMR-Stak** on Linux systems - -**This is an experimental feature** we reserve the right to remove the binary if we get too many issues. - -XMR-Stak releases include a pre-built portable version. If you are simply using it to avoid having to compile the application, you can simply download **xmr-stak-portbin-linux.tar.gz** from our [latest releases](https://github.com/fireice-uk/xmr-stak/releases/latest). Open up command line, and use the following commands: - -``` -tar xzf xmr-stak-portbin-linux.tar.gz -./xmr-stak.sh -``` - -Configuration and tuning files will be generated automatically from your answers. - -For automatic deployments, please use the steps above to obtain config.txt and use the following script: - -``` -#!/bin/bash -sudo apt install curl -curl -O `curl -s https://api.github.com/repos/fireice-uk/xmr-stak/releases/latest | grep -o 'browser_download_url.*xmr-stak-portbin-linux.tar.gz' | sed 's/.*"//'` -curl -O http://path.to/your/config.txt -tar xzf xmr-stak-portbin-linux.tar.gz -./xmr-stak.sh -``` - -XMR-Stak will auto-configure and go to work. You don't even need Docker! - - |