Advertisement
yintian1

Compiling CCminer tribus on ubuntu 16.04

Oct 17th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. How to compile tribus-enabled ccminer on Ubuntu 16.04
  2.  
  3. A guide by @kawaiicrypto
  4.  
  5. DNR donations: DAMNvmZufWE7dKdNtc47ys6F52bCHMnDog
  6.  
  7. I assume you are starting out with a clean install of Ubuntu 16.04.
  8.  
  9. Start by opening up a terminal (or ssh into the machine in question).
  10.  
  11. First, we install quite a few packages.
  12.  
  13. Then issue these commands:
  14.  
  15. sudo apt-get update
  16. sudo apt-get -y install git automake nvidia-cuda-dev nvidia-cuda-toolkit build-essential libssl-dev libcurl4-openssl-dev
  17.  
  18.  
  19. Now, we download the source code using git:
  20.  
  21. cd
  22. git clone -b linux https://github.com/tpruvot/ccminer.git
  23. cd ccminer
  24.  
  25. And now, we compile it, this takes a while (~5 minutes on an 8 core machine)
  26.  
  27. ./build.sh
  28.  
  29.  
  30.  
  31. Now, reboot the computer.
  32.  
  33. Next, open up a terminal (or ssh into the machine), then run these commands:
  34.  
  35. cd
  36. cd ccminer
  37. ./ccminer -a tribus -o stratum+tcp://kawaiipool.party:8533 -u your_denarius_wallet -p c=DNR
  38.  
  39.  
  40. Note: By default, build.sh uses only 4 cores to compile the software. You can change this behaviour, but I will leave that as an excersize for the reader. xD
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement