alberthrocks

Mining Guide for LTC @ mining.rhprogramming.org:9327

Jun 25th, 2013
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. Prerequisites:
  2. =================
  3. Enable file extension editing/viewing:
  4. 1) Open Windows Explorer.
  5. 2) Go to Tools > Folder Options. If you can't see the menu, press ALT to show it.
  6. 3) Click on the View tab.
  7. 4) Uncheck "Hide extensions for known file types".
  8. 5) Done!
  9.  
  10. Now: Pick (a) side(s)!
  11.  
  12. Have a good CPU? Go to http://sourceforge.net/projects/cpuminer/files/ and download the latest cpuminer!
  13. Be sure to get 64-bit if your processor supports it! (I know 64-bit support is on Core i3/i5/i7, AMD Phenom, AMD A-Series, and the AMD FX-series!)
  14.  
  15. Have a good GPU? Go to http://ck.kolivas.org/apps/cgminer/ and download the latest for Windows!
  16.  
  17. If you're on Linux/Mac OS X, download for your platform and do the following:
  18. -> Remove @echo off
  19. -> Add quotes around the echo statements. For instance, `echo bla` becomes `echo "bla"`.
  20. -> Add `./` before the mining command. For instance, `minerd bla` becomes `./minerd bla`.
  21. -> Change `pause` to `read`.
  22. -> Save it!
  23. -> Make sure to `chmod +x mine.sh`! (Make sure to `cd` to your directory first!)
  24.  
  25. CPU Mining
  26. =============
  27. Create a batch script called mine.bat inside the folder where minerd.exe is. Put the following inside:
  28. @echo off
  29. echo Starting to mine LTC...
  30. minerd -o http://mining.rhprogramming.org:9327/ -u LTC_ADDRESS_HERE -p x -a scrypt
  31. echo Mining program exited. To restart mining, run this script again.
  32. pause
  33. ---------------------------------------------------------
  34. Add -t X to control number of cores used, where X is the number of core you want to use.
  35.  
  36. Example:
  37. Usual business:
  38. minerd -o http://mining.rhprogramming.org:9327/ -u LeKBmAPjtMn2xBJG34dkeb3oc2xTFJ2Eot -p x -a scrypt
  39.  
  40. Using only 2 cores:
  41. minerd -o http://mining.rhprogramming.org:9327/ -u LeKBmAPjtMn2xBJG34dkeb3oc2xTFJ2Eot -p x -a scrypt -t 2
  42.  
  43. GPU Mining
  44. =============
  45. Create a batch script called mine.bat inside the folder where minerd.exe is. Put the following inside:
  46. @echo off
  47. echo Starting to mine LTC...
  48. cgminer -I 12 --worksize 256 --thread-concurrency 8192 -g 2 --lookup-gap 2 -o http://mining.rhprogramming.org:9327/ -u LTC_ADDRESS_HERE -p x --scrypt
  49. echo Mining program exited. To restart mining, run this script again.
  50. pause
  51. ---------------------------------------------------------
  52. Modify the X in -I X for increasing speed OR increasing GPU responsiveness (by lowering the number). This represents mining "intensity".
  53.  
  54. Other numeric options depend on your graphics card. Check the following table for arguments used to achieve fast speeds on many GPUs:
  55. https://github.com/litecoin-project/litecoin/wiki/Mining-hardware-comparison
  56.  
  57. If you can't find your card, experiment (carefully)!
  58. MSI Afterburner is a good overclocking tool for ATI GPUs.
  59.  
  60. OVERCLOCKING EXPERTS: --gpu-vddc X.X allows you to change the input voltage - amateurs beware!
Advertisement
Add Comment
Please, Sign In to add comment