Skip to content

Instantly share code, notes, and snippets.

@9bitbear
Last active July 19, 2018 15:05
Show Gist options
  • Save 9bitbear/d8c0ccf77c453eced51016f0e4bb3cce to your computer and use it in GitHub Desktop.
Save 9bitbear/d8c0ccf77c453eced51016f0e4bb3cce to your computer and use it in GitHub Desktop.
  1. Download latest AMD APP SDK from this page: http://developer.amd.com/tools-and-sdks/opencl-zone/amd-accelerated-parallel-processing-app-sdk/
  2. Open terminal and write:
cd
cd Downloads
tar xvf AMD-APP-SDKInstaller-v3.0.130.136-GA-linux64.tar.bz2
sudo sh ./AMD-APP-SDK-v3.0.130.136-GA-linux64.sh

It should look like this:

img1

  1. Now you need to download and run .sh from here https://drive.google.com/open?id=0B0ing0VcMpoMVnVvclNQZnlUeTA. Open terminal and write:
cd
cd Downloads
sudo sh ./install-sgminer.sh

If it ends like that, then everything is fine. img2 4. To start mining create .sh file as shown on pictures: img3 Name it start.sh zz Open your new file with any text editor: zz Write this text and replace wallet to yours (you can add options to 2nd string): #!/bin/bash ./sgminer -k Lyra2REv2 -o stratum+tcp://pool.vtconline.org:9171 -u YourVTCWallet -p x Click Save: zz Copy and paste this file to sgminer location: zz zz Now open terminal from sgminer location and write:

./start.sh

zz Mining will start: zz

Miner options: -k - You can choose an algorithm -o - Pool url -u - Worker Name -p - Worker Password -I (0-20) - Scan intensity -w - Amount of work handled by GPUs per work request (max 256) --thread-concurrency - Number of concurrent threads per GPU for mining --shaders - Number of shaders per GPU for algorithm tuning --auto-gpu - Automatically adjust all GPU engine clock speeds to maintain a target temperature --gpu-engine - Set the GPU core clock range in Mhz --gpu-memclock - Set the GPU memory clock in Mhz --gpu-threads - Number of mining threads per GPU --gpu-fan - Set the GPU fan percentage range

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment