Guest User

Untitled

a guest
Jan 10th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. sudo apt-get install libcurl4-openssl-dev libncurses5-dev pkg-config automake yasm
  2.  
  3. # clone cpuminer
  4. git clone https://github.com/pooler/cpuminer.git
  5.  
  6. # compile
  7. cd cpuminer
  8. ./autogen.sh
  9. ./configure CFLAGS="-O3"
  10. make
  11.  
  12. # choose a miner pool and register there
  13.  
  14. # start the miner
  15. ./minerd --url=your.minerpool.org --user=username --pass=password
  16.  
  17. user@user-Dell-Notebook-PC:~$ cd cpuminer
  18. user@user-Dell-Notebook-PC:~/cpuminer$ ./autogen.sh
  19. ./autogen.sh: 8: ./autogen.sh: aclocal: not found
  20. user@user-Dell-Notebook-PC:~/cpuminer$
  21.  
  22. sudo apt-get install apt-file
  23.  
  24. sudo apt-file update
  25.  
  26. apt-file search aclocal
  27.  
  28. cd cpuminer
  29. ./autogen.sh
  30. ./configure CFLAGS="-O3"
  31. make
Add Comment
Please, Sign In to add comment