diff --git a/README.md b/README.md index bec8d040322f5dae27021059fa114127bf3178a3..ece30118becc77e1ae6963b13e11dab52b4daf60 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,6 @@ XMR-Stak is a universal Stratum pool miner. This miner supports CPUs, AMD and NV * [Features](#features) * [Supported altcoins](#supported-altcoins) * [Download](#download) -* [Linux Portable Binary](doc/Linux_deployment.md) * [Usage](doc/usage.md) * [HowTo Compile](doc/compile.md) * [FAQ](doc/FAQ.md) @@ -59,7 +58,6 @@ Please note, this list is not complete, and is not an endorsement. ## Download You can find the latest releases and precompiled binaries on GitHub under [Releases](https://github.com/fireice-uk/xmr-stak/releases). -If you are running on Linux (especially Linux VMs), checkout [Linux Portable Binary](doc/Linux_deployment.md). ## Default Developer Donation diff --git a/doc/Linux_deployment.md b/doc/Linux_deployment.md deleted file mode 100644 index 3219e8a99d527caf9dfc1f04b600651a2f4ec75f..0000000000000000000000000000000000000000 --- 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! - -