Advertisement
Guest User

zcash mining2

a guest
Nov 4th, 2016
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. 1. Mine Zcash with CPU
  2.  
  3. $ sudo apt-get install cmake build-essential libboost-all-dev
  4. $ git clone https://github.com/ocminer/nheqminer.git
  5. $ cd nheqminer/nheqminer
  6. $ mkdir build
  7. $ cd build
  8. $ cmake ..
  9. $ make
  10. # run miner
  11. $ ./nheqminer -l zec.suprnova.cc:2142 -u YourUsername.YourWorkername -p YourWorkerPassword
  12.  
  13.  
  14. 2. Mine Zcash with GPU NVIDIA
  15.  
  16. $ sudo apt-get install cmake build-essential libboost-all-dev
  17. $ git clone https://github.com/ocminer/nheqminer.git
  18. $ cd nheqminer/nheqminer
  19. $ mkdir build
  20. $ cd build
  21. $ cmake ..
  22. $ make
  23. # run miner
  24. $ ./nheqminer -cd 0 -l zec.suprnova.cc:2142 -u YourUsername.YourWorkername -p YourWorkerPassword
  25. (depends on how many cards you got, use -cd 0 1 2 etc.)
  26.  
  27.  
  28. 3. Mine Zcash with GPU AMD Zogminer (Linux)
  29.  
  30. $ git clone https://github.com/nginnever/zogminer.git
  31. $ cd zogminer/
  32. $ ./zcutil/fetch-params.sh
  33. $ ./zcutil/build.sh -j$(nproc)
  34. # run miner
  35. $ ./src/zcash-miner -G -stratum="stratum+tcp:/zec.suprnova.cc:2142" -user=YourUsername.YourWorkername -pass=YourWorkerPassword
  36.  
  37.  
  38. 4. Mine Zcash with GPU AMD Genoil Miner (Windows):
  39.  
  40. $ Download https://github.com/Genoil/ZECMiner/blob/master/releases/genoil-zec-miner-0.4.1.zip
  41. $ unzip genoil-zec-miner-0.4.1.zip
  42. $ cd genoil-zec-miner-0.4.1
  43. $ genoil.exe -c zec.suprnova.cc:2142 -u YourUsername.YourWorkername -p YourWorkerPassword -P 0 -g 0 1 -i 13
  44.  
  45.  
  46. 5. Mine Zcash with GPU AMD nheqminer V0.3a Miner (Windows):
  47.  
  48. Go to https://github.com/ocminer/nheqminer/releases
  49. Then download nheqminer_v0.3a_suprnova.zip
  50. unzip nheqminer_v0.3a_suprnova.zip
  51. Open a command console
  52. Go to the directory of the folder where you have extracted the contents of the file
  53. cd /
  54. cd zcash
  55. then type
  56. nheqminer_suprnova.exe zec.suprnova.cc:2142 -u YourUsername.YourWorkername -p YourWorkerPassword
  57.  
  58. As per requirement, you need to have an account on suprnova.cc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement