How to mine Dogecoin using Digitalocean Cloud VPS


SUBMITTED BY: Guest

DATE: Jan. 17, 2014, 6:32 p.m.

FORMAT: Text only

SIZE: 3.2 kB

HITS: 923

  1. This is a great simple guide already tested by myself, just follow the steps below
  2. If you liked the guide please send some Dogecoins my way Smiley ===>>> D7JYSyY1ERhmqsrZ9taLcNxgfsAksNKD3z
  3. **if you want i can set it up for you for only 1,000 Doges - msg me**
  4. **VERSION 1 - P2POOL**
  5. 1. sign up for a digitalocean account here: https://www.digitalocean.com/?refcode=261c189a4aeb
  6. Deposit at least $5 and add coupon *LINUX13* or *GIT10* to get $10 extra bonus
  7. 2. create the smallest droplet 512 MB/1 CPU - choose Ubuntu 13.04 x64
  8. 3. login via ssh (use putty) with your vps login details
  9. 4. execute the following comands
  10. make a swap file:
  11. sudo dd if=/dev/zero of=/swapfile bs=64M count=16
  12. sudo mkswap /swapfile
  13. sudo swapon /swapfile
  14. install git:
  15. sudo apt-get update
  16. sudo apt-get install git
  17. clone cpu miner:
  18. git clone https://github.com/pooler/cpuminer.git
  19. compile the source code:
  20. sudo apt-get install build-essential libcurl4-openssl-dev automake make
  21. cd cpuminer
  22. #Basic *nix build instructions:
  23. ./autogen.sh # only needed if building from git repo (which we are)
  24. CFLAGS="-O3 -Wall -msse2" ./configure
  25. make
  26. apt-get install screen
  27. screen
  28. ./minerd --url http://whatever.poolyouwant.com:Port/ --userpass USERNAME:password
  29. (for example: Dogecoin pool http:// pool.hostv.pl:9555 --userpass Dogecoinwalletaddress:password or http:// doge.crypto49er.com:9555)
  30. when logging back again use "screen -r" to restore session
  31. That's all!
  32. If you liked the guide please send some Dogecoins my way Smiley ===>>> D7JYSyY1ERhmqsrZ9taLcNxgfsAksNKD3z
  33. tip: create up to 5 similar droplets for more coins Cheesy
  34. **VERSION 2 -- STRATUM**
  35. 1. sign up for a digitalocean account here: https://www.digitalocean.com/?refcode=261c189a4aeb
  36. Deposit at least $5 and add coupon *LINUX13* or *GIT10* to get $10 extra bonus
  37. 2. create the smallest droplet 512 MB/1 CPU - choose Ubuntu 13.04 x64
  38. 3. login via ssh (use putty) with your vps login details
  39. 4. execute the following commands:
  40. sudo apt-get update
  41. sudo apt-get install build-essential libcurl4-openssl-dev
  42. wget http://sourceforge.net/projects/cpuminer/files/pooler-cpuminer-2.3.2.tar.gz
  43. tar -xzf pooler-cpuminer-2.3.2.tar.gz
  44. cd cpuminer-2.3.2/
  45. ./configure CFLAGS="-O3"
  46. make
  47. apt-get install screen
  48. screen
  49. ./minerd --url stratum+tcp://server:port --userpass worker.name:password
  50. That's all!
  51. when logging back again use "screen -r" to restore session
  52. If you liked the guide please send some Dogecoins my way Smiley ===>>> DQXvZhi1yHPwW8ry9xy2RzRAZ13f5mTmfg
  53. tips: create up to 5 similar droplets for more coins Cheesy
  54. in order to keep your sessions alive, use the command "screen" before running "./minerd"
  55. when logging back again use "screen -r" to restore session

comments powered by Disqus