README 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831
  1. This is a multi-threaded multi-pool GPU, FPGA and ASIC miner with ATI GPU
  2. monitoring, (over)clocking and fanspeed support for bitcoin and derivative
  3. coins. Do not use on multiple block chains at the same time!
  4. This code is provided entirely free of charge by the programmer in his spare
  5. time so donations would be greatly appreciated. Please consider donating to the
  6. address below.
  7. Con Kolivas <kernel@kolivas.org>
  8. 15qSxP1SQcUX3o4nhkfdbgyoWEFMomJ4rZ
  9. DOWNLOADS:
  10. http://ck.kolivas.org/apps/cgminer
  11. GIT TREE:
  12. https://github.com/ckolivas/cgminer
  13. Support thread:
  14. http://bitcointalk.org/index.php?topic=28402.0
  15. IRC Channel:
  16. irc://irc.freenode.net/cgminer
  17. License: GPLv3. See COPYING for details.
  18. SEE ALSO API-README, ASIC-README, FGPA-README, GPU-README AND SCRYPT-README FOR
  19. MORE INFORMATION ON EACH.
  20. ---
  21. EXECUTIVE SUMMARY ON USAGE:
  22. After saving configuration from the menu, you do not need to give cgminer any
  23. arguments and it will load your configuration.
  24. Any configuration file may also contain a single
  25. "include" : "filename"
  26. to recursively include another configuration file.
  27. Writing the configuration will save all settings from all files in the output.
  28. Single pool:
  29. cgminer -o http://pool:port -u username -p password
  30. Multiple pools:
  31. cgminer -o http://pool1:port -u pool1username -p pool1password -o http://pool2:port -u pool2usernmae -p pool2password
  32. Single pool with a standard http proxy, regular desktop:
  33. cgminer -o "http:proxy:port|http://pool:port" -u username -p password
  34. Single pool with a socks5 proxy, regular desktop:
  35. cgminer -o "socks5:proxy:port|http://pool:port" -u username -p password
  36. Single pool with stratum protocol support:
  37. cgminer -o stratum+tcp://pool:port -u username -p password
  38. The list of proxy types are:
  39. http: standard http 1.1 proxy
  40. http0: http 1.0 proxy
  41. socks4: socks4 proxy
  42. socks5: socks5 proxy
  43. socks4a: socks4a proxy
  44. socks5h: socks5 proxy using a hostname
  45. If you compile cgminer with a version of CURL before 7.19.4 then some of the above will
  46. not be available. All are available since CURL version 7.19.4
  47. If you specify the --socks-proxy option to cgminer, it will only be applied to all pools
  48. that don't specify their own proxy setting like above
  49. ---
  50. BUILDING CGMINER FOR YOURSELF
  51. DEPENDENCIES:
  52. Mandatory:
  53. curl dev library http://curl.haxx.se/libcurl/
  54. (libcurl4-openssl-dev)
  55. pkg-config http://www.freedesktop.org/wiki/Software/pkg-config
  56. libtool http://www.gnu.org/software/libtool/
  57. Optional:
  58. curses dev library
  59. (libncurses5-dev or libpdcurses on WIN32)
  60. jansson http://www.digip.org/jansson/
  61. (jansson is included in-tree and not necessary)
  62. AMD APP SDK http://developer.amd.com/sdks/AMDAPPSDK
  63. (This sdk is mandatory for GPU mining)
  64. AMD ADL SDK http://developer.amd.com/sdks/ADLSDK
  65. (This sdk is mandatory for ATI GPU monitoring & clocking)
  66. libudev dev library (libudev-dev)
  67. (This is only required for ASIC+FPGA auto-detection and is linux only)
  68. libusb dev library (libusb-dev)
  69. (This is only required for ASIC+FPGA support)
  70. If building from git:
  71. autoconf
  72. automake
  73. Before compiling cgminer, if you are using any USB devices you may need to
  74. build libusb yourself if you have an older version of libusb-dev that has a bug.
  75. This usually shows up with a combination of USB1.1 devices (all Icarus) with
  76. USB3 ports/hubs. If you do not have this hardware, most versions of libusb will
  77. work fine.
  78. To compile cgminer with a known working version of libusb
  79. First install udev-dev via one of:
  80. Ubuntu derivatives: apt-get install libudev-dev
  81. Arch: it should be installed by default as part of systemd
  82. Fedora: yum install libgudev1
  83. Mingw: not required
  84. In the cgminer folder create a subfolder called libusb
  85. mkdir libusb
  86. cd libusb
  87. Now, in that folder get and extract the known working libusb
  88. libusb-1.0.16-rc10.tar.bz2
  89. It is available here:
  90. http://sourceforge.net/projects/libusb/files/libusb-1.0/libusb-1.0.16-rc10/
  91. In linux and mingw you extract with:
  92. tar -xvf libusb-1.0.16-rc10.tar.bz2
  93. Then to build it:
  94. cd libusb-1.0.16-rc10
  95. ./configure
  96. make
  97. cd ../..
  98. Now when you configure cgminer as listed further below in the build
  99. instructions, for all the USB devices you must add libusb as follows:
  100. LIBUSB_CFLAGS="-I./libusb/libusb-1.0.16-rc10/libusb" LIBUSB_LIBS="./libusb/libusb-1.0.16-rc10/libusb/.libs/libusb-1.0.a -ludev" ./configure --enable-bflsc --enable-icarus --enable-bitforce --enable-modminer --enable-ztex --enable-avalon
  101. On Fedora18 you need -lrt also:
  102. LIBUSB_CFLAGS="-I./libusb/libusb-1.0.16-rc10/libusb" LIBUSB_LIBS="./libusb/libusb-1.0.16-rc10/libusb/.libs/libusb-1.0.a -ludev -lrt" ./configure --enable-bflsc --enable-icarus --enable-bitforce --enable-modminer --enable-ztex --enable-avalon
  103. On Windows mingw:
  104. LIBUSB_CFLAGS="-I./libusb/libusb-1.0.16-rc10/libusb" LIBUSB_LIBS="./libusb/libusb-1.0.16-rc10/libusb/.libs/libusb-1.0.dll.a" ./configure --enable-bflsc --enable-icarus --enable-bitforce --enable-modminer --enable-ztex --enable-avalon
  105. After compiling on windows you need to copy
  106. ./libusb/libusb-1.0.16-rc10/libusb/.libs/libusb-1.0.dll
  107. into the current cgminer folder before running cgminer
  108. CGMiner specific configuration options:
  109. --disable-opencl Override detection and disable building with opencl
  110. --disable-adl Override detection and disable building with adl
  111. --enable-bflsc Compile support for BFL ASICs (default disabled)
  112. --enable-bitforce Compile support for BitForce FPGAs(default disabled)
  113. --enable-icarus Compile support for Icarus bitstream FPGAs(default disabled)
  114. --enable-modminer Compile support for ModMiner FPGAs(default disabled)
  115. --enable-ztex Compile support for Ztex Board(default disabled)
  116. --enable-avalon Compile support for Avalon (default disabled)
  117. --enable-scrypt Compile support for scrypt litecoin mining (default disabled)
  118. --without-curses Compile support for curses TUI (default enabled)
  119. Basic *nix build instructions:
  120. To actually build:
  121. ./autogen.sh # only needed if building from git repo
  122. CFLAGS="-O2 -Wall -march=native" ./configure <options>
  123. No installation is necessary. You may run cgminer from the build
  124. directory directly, but you may do make install if you wish to install
  125. cgminer to a system location or location you specified.
  126. Native WIN32 build instructions: see windows-build.txt
  127. ---
  128. Usage instructions: Run "cgminer --help" to see options:
  129. Usage: . [-atDdGCgIKklmpPQqrRsTouvwOchnV]
  130. Options for both config file and command line:
  131. --api-allow Allow API access (if enabled) only to the given list of [W:]IP[/Prefix] address[/subnets]
  132. This overrides --api-network and you must specify 127.0.0.1 if it is required
  133. W: in front of the IP address gives that address privileged access to all api commands
  134. --api-description Description placed in the API status header (default: cgminer version)
  135. --api-groups API one letter groups G:cmd:cmd[,P:cmd:*...]
  136. See API-README for usage
  137. --api-listen Listen for API requests (default: disabled)
  138. By default any command that does not just display data returns access denied
  139. See --api-allow to overcome this
  140. --api-network Allow API (if enabled) to listen on/for any address (default: only 127.0.0.1)
  141. --api-mcast Enable API Multicast listener, (default: disabled)
  142. The listener will only run if the API is also enabled
  143. --api-mcast-addr <arg> API Multicast listen address, (default: 224.0.0.75)
  144. --api-mcast-code <arg> Code expected in the API Multicast message, don't use '-' (default: "FTW")
  145. --api-mcast-port <arg> API Multicast listen port, (default: 4028)
  146. --api-port Port number of miner API (default: 4028)
  147. --auto-fan Automatically adjust all GPU fan speeds to maintain a target temperature
  148. --auto-gpu Automatically adjust all GPU engine clock speeds to maintain a target temperature
  149. --balance Change multipool strategy from failover to even share balance
  150. --benchmark Run cgminer in benchmark mode - produces no shares
  151. --compact Use compact display without per device statistics
  152. --debug|-D Enable debug output
  153. --device|-d <arg> Select device to use, one value, range and/or comma separated (e.g. 0-2,4) default: all
  154. --disable-rejecting Automatically disable pools that continually reject shares
  155. --expiry|-E <arg> Upper bound on how many seconds after getting work we consider a share from it stale (default: 120)
  156. --failover-only Don't leak work to backup pools when primary pool is lagging
  157. --fix-protocol Do not redirect to a different getwork protocol (eg. stratum)
  158. --hotplug <arg> Set hotplug check time to <arg> seconds (0=never default: 5) - only with libusb
  159. --kernel-path|-K <arg> Specify a path to where bitstream and kernel files are (default: "/usr/local/bin")
  160. --load-balance Change multipool strategy from failover to efficiency based balance
  161. --log|-l <arg> Interval in seconds between log output (default: 5)
  162. --lowmem Minimise caching of shares for low memory applications
  163. --monitor|-m <arg> Use custom pipe cmd for output messages
  164. --net-delay Impose small delays in networking to not overload slow routers
  165. --no-submit-stale Don't submit shares if they are detected as stale
  166. --pass|-p <arg> Password for bitcoin JSON-RPC server
  167. --per-device-stats Force verbose mode and output per-device statistics
  168. --protocol-dump|-P Verbose dump of protocol-level activities
  169. --queue|-Q <arg> Minimum number of work items to have queued (0 - 10) (default: 1)
  170. --quiet|-q Disable logging output, display status and errors
  171. --real-quiet Disable all output
  172. --remove-disabled Remove disabled devices entirely, as if they didn't exist
  173. --rotate <arg> Change multipool strategy from failover to regularly rotate at N minutes (default: 0)
  174. --round-robin Change multipool strategy from failover to round robin on failure
  175. --scan-time|-s <arg> Upper bound on time spent scanning current work, in seconds (default: 60)
  176. --sched-start <arg> Set a time of day in HH:MM to start mining (a once off without a stop time)
  177. --sched-stop <arg> Set a time of day in HH:MM to stop mining (will quit without a start time)
  178. --scrypt Use the scrypt algorithm for mining (litecoin only)
  179. --sharelog <arg> Append share log to file
  180. --shares <arg> Quit after mining N shares (default: unlimited)
  181. --socks-proxy <arg> Set socks4 proxy (host:port) for all pools without a proxy specified
  182. --syslog Use system log for output messages (default: standard error)
  183. --temp-cutoff <arg> Temperature where a device will be automatically disabled, one value or comma separated list (default: 95)
  184. --text-only|-T Disable ncurses formatted screen output
  185. --url|-o <arg> URL for bitcoin JSON-RPC server
  186. --user|-u <arg> Username for bitcoin JSON-RPC server
  187. --verbose Log verbose output to stderr as well as status output
  188. --userpass|-O <arg> Username:Password pair for bitcoin JSON-RPC server
  189. Options for command line only:
  190. --config|-c <arg> Load a JSON-format configuration file
  191. See example.conf for an example configuration.
  192. --help|-h Print this message
  193. --version|-V Display version and exit
  194. USB device (ASIC and FPGA) options:
  195. --icarus-options <arg> Set specific FPGA board configurations - one set of values for all or comma separated
  196. --icarus-timing <arg> Set how the Icarus timing is calculated - one setting/value for all or comma separated
  197. --usb <arg> USB device selection (See below)
  198. --usb-dump (See FPGA-README)
  199. See FGPA-README or ASIC-README for more information regarding these.
  200. ASIC only options:
  201. --avalon-auto Adjust avalon overclock frequency dynamically for best hashrate
  202. --avalon-fan <arg> Set fanspeed percentage for avalon, single value or range (default: 20-100)
  203. --avalon-freq <arg> Set frequency range for avalon-auto, single value or range
  204. --avalon-cutoff <arg> Set avalon overheat cut off temperature (default: 60)
  205. --avalon-options <arg> Set avalon options baud:miners:asic:timeout:freq
  206. --avalon-temp <arg> Set avalon target temperature (default: 50)
  207. --bflsc-overheat <arg> Set overheat temperature where BFLSC devices throttle, 0 to disable (default: 90)
  208. --bitburner-voltage <arg> Set BitBurner core voltage, in millivolts
  209. See ASIC-README for more information regarding these.
  210. FPGA only options:
  211. --bfl-range Use nonce range on bitforce devices if supported
  212. See FGPA-README for more information regarding this.
  213. GPU only options:
  214. --auto-fan Automatically adjust all GPU fan speeds to maintain a target temperature
  215. --auto-gpu Automatically adjust all GPU engine clock speeds to maintain a target temperature
  216. --disable-gpu|-G Disable GPU mining even if suitable devices exist
  217. --gpu-threads|-g <arg> Number of threads per GPU (1 - 10) (default: 2)
  218. --gpu-dyninterval <arg> Set the refresh interval in ms for GPUs using dynamic intensity (default: 7)
  219. --gpu-engine <arg> GPU engine (over)clock range in Mhz - one value, range and/or comma separated list (e.g. 850-900,900,750-850)
  220. --gpu-fan <arg> GPU fan percentage range - one value, range and/or comma separated list (e.g. 25-85,85,65)
  221. --gpu-map <arg> Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)
  222. --gpu-memclock <arg> Set the GPU memory (over)clock in Mhz - one value for all or separate by commas for per card.
  223. --gpu-memdiff <arg> Set a fixed difference in clock speed between the GPU and memory in auto-gpu mode
  224. --gpu-powertune <arg> Set the GPU powertune percentage - one value for all or separate by commas for per card.
  225. --gpu-reorder Attempt to reorder GPU devices according to PCI Bus ID
  226. --gpu-vddc <arg> Set the GPU voltage in Volts - one value for all or separate by commas for per card.
  227. --intensity|-I <arg> Intensity of GPU scanning (d or -10 -> 10, default: d to maintain desktop interactivity)
  228. --kernel|-k <arg> Override kernel to use (diablo, poclbm, phatk or diakgcn) - one value or comma separated
  229. --ndevs|-n Enumerate number of detected GPUs and exit
  230. --no-restart Do not attempt to restart GPUs that hang
  231. --temp-hysteresis <arg> Set how much the temperature can fluctuate outside limits when automanaging speeds (default: 3)
  232. --temp-overheat <arg> Overheat temperature when automatically managing fan and GPU speeds (default: 85)
  233. --temp-target <arg> Target temperature when automatically managing fan and GPU speeds (default: 75)
  234. --vectors|-v <arg> Override detected optimal vector (1, 2 or 4) - one value or comma separated list
  235. --worksize|-w <arg> Override detected optimal worksize - one value or comma separated list
  236. See GPU-README for more information regarding GPU mining.
  237. SCRYPT only options:
  238. --lookup-gap <arg> Set GPU lookup gap for scrypt mining, comma separated
  239. --shaders <arg> GPU shaders per card for tuning scrypt, comma separated
  240. --thread-concurrency <arg> Set GPU thread concurrency for scrypt mining, comma separated
  241. See SCRYPT-README for more information regarding litecoin mining.
  242. Cgminer should automatically find all of your Avalon ASIC, BFL ASIC, BitForce
  243. FPGAs, Icarus bitstream FPGAs, ASICMINER usb block erupters, ModMiner FPGAs,
  244. or Ztex FPGAs
  245. ---
  246. SETTING UP USB DEVICES
  247. WINDOWS:
  248. On windows, the direct USB support requires the installation of a WinUSB
  249. driver (NOT the ftdi_sio driver), and attach it to your devices.
  250. The easiest way to do this is to use the zadig utility which will install the
  251. drivers for you and then once you plug in your device you can choose the
  252. "list all devices" from the "option" menu and you should be able to see the
  253. device as something like: "BitFORCE SHA256 SC". Choose the install or replace
  254. driver option and select WinUSB. You can either google for zadig or download
  255. it from the cgminer directoy in the DOWNLOADS link above.
  256. LINUX:
  257. On linux, the direct USB support requires no drivers at all. However due to
  258. permissions issues, you may not be able to mine directly on the devices as a
  259. regular user without giving the user access to the device or by mining as
  260. root (administrator). In order to give your regular user access, you can make
  261. him a member of the plugdev group with the following commands:
  262. sudo usermod -G plugdev -a `whoami`
  263. If your distribution does not have the plugdev group you can create it with:
  264. sudo groupadd plugdev
  265. In order for the BFL devices to instantly be owned by the plugdev group and
  266. accessible by anyone from the plugdev group you can copy the file
  267. "01-cgminer.rules" from the cgminer archive into the /etc/udev/rules.d
  268. directory with the following command:
  269. sudo cp 01-cgminer.rules /etc/udev/rules.d/
  270. After this you can either manually restart udev and re-login, or more easily
  271. just reboot.
  272. Advanced USB options:
  273. The --usb option can restrict how many Avalon, BFL ASIC, BitForce FPGAs,
  274. ModMiner FPGAs or Icarus bitstream FPGAs it finds:
  275. --usb 1:2,1:3,1:4,1:*
  276. or
  277. --usb BAS:1,BFL:1,MMQ:0,ICA:0
  278. or
  279. --usb :10
  280. You can only use one of the above 3
  281. The first version
  282. --usb 1:2,1:3,1:4,1:*
  283. allows you to select which devices to mine on with a list of USB
  284. bus_number:device_address
  285. All other USB devices will be ignored
  286. Hotplug will also only look at the devices matching the list specified and
  287. find nothing new if they are all in use
  288. You can specify just the USB bus_number to find all devices like 1:*
  289. which means any devices on USB bus_number 1
  290. This is useful if you unplug a device then plug it back in the same port,
  291. it usually reappears with the same bus_number but a different device_address
  292. You can see the list of all USB devices on linux with 'sudo lsusb'
  293. Cgminer will list the recognised USB devices with the '-n' option or the
  294. '--usb-dump 0' option
  295. The '--usb-dump N' option with a value of N greater than 0 will dump a lot
  296. of details about each recognised USB device
  297. If you wish to see all USB devices, include the --usb-list-all option
  298. The second version
  299. --usb BAS:1,BFL:1,MMQ:0,ICA:0
  300. allows you to specify how many devices to choose based on each device
  301. driver cgminer has - there are currently 4 USB drivers: BAS, BFL, MMQ & ICA
  302. N.B. you can only specify which device driver to limit, not the type of
  303. each device, e.g. with BAS:n you can limit how many BFL ASIC devices will
  304. be checked, but you cannot limit the number of each type of BFL ASIC
  305. Also note that the MMQ count is the number of MMQ backplanes you have
  306. not the number of MMQ FPGAs
  307. The third version
  308. --usb :10
  309. means only use a maximum of 10 devices of any supported USB devices
  310. Once cgminer has 10 devices it will not configure any more and hotplug will
  311. not scan for any more
  312. If one of the 10 devices stops working, hotplug - if enabled, as is default
  313. - will scan normally again until it has 10 devices
  314. --usb :0 will disable all USB I/O other than to initialise libusb
  315. NOTE: The --device option will limit which devices are in use based on their
  316. numbering order of the total devices, so if you hotplug USB devices regularly,
  317. it will not reliably be the same devices.
  318. ---
  319. WHILE RUNNING:
  320. The following options are available while running with a single keypress:
  321. [P]ool management [G]PU management [S]ettings [D]isplay options [Q]uit
  322. P gives you:
  323. Current pool management strategy: Failover
  324. [F]ailover only disabled
  325. [A]dd pool [R]emove pool [D]isable pool [E]nable pool
  326. [C]hange management strategy [S]witch pool [I]nformation
  327. S gives you:
  328. [Q]ueue: 1
  329. [S]cantime: 60
  330. [E]xpiry: 120
  331. [W]rite config file
  332. [C]gminer restart
  333. D gives you:
  334. [N]ormal [C]lear [S]ilent mode (disable all output)
  335. [D]ebug:off
  336. [P]er-device:off
  337. [Q]uiet:off
  338. [V]erbose:off
  339. [R]PC debug:off
  340. [W]orkTime details:off
  341. co[M]pact: off
  342. [L]og interval:5
  343. Q quits the application.
  344. G gives you something like:
  345. GPU 0: [124.2 / 191.3 Mh/s] [A:77 R:33 HW:0 U:1.73/m WU 1.73/m]
  346. Temp: 67.0 C
  347. Fan Speed: 35% (2500 RPM)
  348. Engine Clock: 960 MHz
  349. Memory Clock: 480 Mhz
  350. Vddc: 1.200 V
  351. Activity: 93%
  352. Powertune: 0%
  353. Last initialised: [2011-09-06 12:03:56]
  354. Thread 0: 62.4 Mh/s Enabled ALIVE
  355. Thread 1: 60.2 Mh/s Enabled ALIVE
  356. [E]nable [D]isable [R]estart GPU [C]hange settings
  357. Or press any other key to continue
  358. The running log shows output like this:
  359. [2012-10-12 18:02:20] Accepted f0c05469 Diff 1/1 GPU 0 pool 1
  360. [2012-10-12 18:02:22] Accepted 218ac982 Diff 7/1 GPU 1 pool 1
  361. [2012-10-12 18:02:23] Accepted d8300795 Diff 1/1 GPU 3 pool 1
  362. [2012-10-12 18:02:24] Accepted 122c1ff1 Diff 14/1 GPU 1 pool 1
  363. The 8 byte hex value are the 2nd 8 bytes of the share being submitted to the
  364. pool. The 2 diff values are the actual difficulty target that share reached
  365. followed by the difficulty target the pool is currently asking for.
  366. ---
  367. Also many issues and FAQs are covered in the forum thread
  368. dedicated to this program,
  369. http://forum.bitcoin.org/index.php?topic=28402.0
  370. The output line shows the following:
  371. (5s):1713.6 (avg):1707.8 Mh/s | A:729 R:8 HW:0 WU:22.53/m
  372. Each column is as follows:
  373. 5s: A 5 second exponentially decaying average hash rate
  374. avg: An all time average hash rate
  375. A: The total difficulty of Accepted shares
  376. R: The total difficulty of Rejected shares
  377. HW: The number of HardWare errors
  378. WU: The Work Utility defined as the number of diff1 shares work / minute
  379. (accepted or rejected).
  380. GPU 1: 73.5C 2551RPM | 427.3/443.0Mh/s | A:8 R:0 HW:0 WU:4.39/m
  381. Each column is as follows:
  382. Temperature (if supported)
  383. Fanspeed (if supported)
  384. A 5 second exponentially decaying average hash rate
  385. An all time average hash rate
  386. The total difficulty of accepted shares
  387. The total difficulty of rejected shares
  388. The number of hardware erorrs
  389. The work utility defined as the number of diff1 shares work / minute
  390. The cgminer status line shows:
  391. ST: 1 SS: 0 NB: 1 LW: 8 GF: 1 RF: 1
  392. ST is STaged work items (ready to use).
  393. SS is Stale Shares discarded (detected and not submitted so don't count as rejects)
  394. NB is New Blocks detected on the network
  395. LW is Locally generated Work items
  396. GF is Getwork Fail Occasions (server slow to provide work)
  397. RF is Remote Fail occasions (server slow to accept work)
  398. The block display shows:
  399. Block: 0074c5e482e34a506d2a051a... Started: [17:17:22] Best share: 2.71K
  400. This shows a short stretch of the current block, when the new block started,
  401. and the all time best difficulty share you've found since starting cgminer
  402. this time.
  403. ---
  404. MULTIPOOL
  405. FAILOVER STRATEGIES WITH MULTIPOOL:
  406. A number of different strategies for dealing with multipool setups are
  407. available. Each has their advantages and disadvantages so multiple strategies
  408. are available by user choice, as per the following list:
  409. FAILOVER:
  410. The default strategy is failover. This means that if you input a number of
  411. pools, it will try to use them as a priority list, moving away from the 1st
  412. to the 2nd, 2nd to 3rd and so on. If any of the earlier pools recover, it will
  413. move back to the higher priority ones.
  414. ROUND ROBIN:
  415. This strategy only moves from one pool to the next when the current one falls
  416. idle and makes no attempt to move otherwise.
  417. ROTATE:
  418. This strategy moves at user-defined intervals from one active pool to the next,
  419. skipping pools that are idle.
  420. LOAD BALANCE:
  421. This strategy sends work to all the pools to maintain optimum load. The most
  422. efficient pools will tend to get a lot more shares. If any pool falls idle, the
  423. rest will tend to take up the slack keeping the miner busy.
  424. BALANCE:
  425. This strategy monitors the amount of difficulty 1 shares solved for each pool
  426. and uses it to try to end up doing the same amount of work for all pools.
  427. ---
  428. LOGGING
  429. cgminer will log to stderr if it detects stderr is being redirected to a file.
  430. To enable logging simply add 2>logfile.txt to your command line and logfile.txt
  431. will contain the logged output at the log level you specify (normal, verbose,
  432. debug etc.)
  433. In other words if you would normally use:
  434. ./cgminer -o xxx -u yyy -p zzz
  435. if you use
  436. ./cgminer -o xxx -u yyy -p zzz 2>logfile.txt
  437. it will log to a file called logfile.txt and otherwise work the same.
  438. There is also the -m option on linux which will spawn a command of your choice
  439. and pipe the output directly to that command.
  440. The WorkTime details 'debug' option adds details on the end of each line
  441. displayed for Accepted or Rejected work done. An example would be:
  442. <-00000059.ed4834a3 M:X D:1.0 G:17:02:38:0.405 C:1.855 (2.995) W:3.440 (0.000) S:0.461 R:17:02:47
  443. The first 2 hex codes are the previous block hash, the rest are reported in
  444. seconds unless stated otherwise:
  445. The previous hash is followed by the getwork mode used M:X where X is one of
  446. P:Pool, T:Test Pool, L:LP or B:Benchmark,
  447. then D:d.ddd is the difficulty required to get a share from the work,
  448. then G:hh:mm:ss:n.nnn, which is when the getwork or LP was sent to the pool and
  449. the n.nnn is how long it took to reply,
  450. followed by 'O' on it's own if it is an original getwork, or 'C:n.nnn' if it was
  451. a clone with n.nnn stating how long after the work was recieved that it was cloned,
  452. (m.mmm) is how long from when the original work was received until work started,
  453. W:n.nnn is how long the work took to process until it was ready to submit,
  454. (m.mmm) is how long from ready to submit to actually doing the submit, this is
  455. usually 0.000 unless there was a problem with submitting the work,
  456. S:n.nnn is how long it took to submit the completed work and await the reply,
  457. R:hh:mm:ss is the actual time the work submit reply was received
  458. If you start cgminer with the --sharelog option, you can get detailed
  459. information for each share found. The argument to the option may be "-" for
  460. standard output (not advisable with the ncurses UI), any valid positive number
  461. for that file descriptor, or a filename.
  462. To log share data to a file named "share.log", you can use either:
  463. ./cgminer --sharelog 50 -o xxx -u yyy -p zzz 50>share.log
  464. ./cgminer --sharelog share.log -o xxx -u yyy -p zzz
  465. For every share found, data will be logged in a CSV (Comma Separated Value)
  466. format:
  467. timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  468. For example (this is wrapped, but it's all on one line for real):
  469. 1335313090,reject,
  470. ffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000,
  471. http://localhost:8337,GPU0,0,
  472. 6f983c918f3299b58febf95ec4d0c7094ed634bc13754553ec34fc3800000000,
  473. 00000001a0980aff4ce4a96d53f4b89a2d5f0e765c978640fe24372a000001c5
  474. 000000004a4366808f81d44f26df3d69d7dc4b3473385930462d9ab707b50498
  475. f681634a4f1f63d01a0cd43fb338000000000080000000000000000000000000
  476. 0000000000000000000000000000000000000000000000000000000080020000
  477. ---
  478. RPC API
  479. For RPC API details see the API-README file
  480. ---
  481. FAQ
  482. Q: Can I mine on servers from different networks (eg smartcoin and bitcoin) at
  483. the same time?
  484. A: No, cgminer keeps a database of the block it's working on to ensure it does
  485. not work on stale blocks, and having different blocks from two networks would
  486. make it invalidate the work from each other.
  487. Q: Can I configure cgminer to mine with different login credentials or pools
  488. for each separate device?
  489. A: No.
  490. Q: Can I put multiple pools in the config file?
  491. A: Yes, check the example.conf file. Alternatively, set up everything either on
  492. the command line or via the menu after startup and choose settings->write
  493. config file and the file will be loaded one each startup.
  494. Q: The build fails with gcc is unable to build a binary.
  495. A: Remove the "-march=native" component of your CFLAGS as your version of gcc
  496. does not support it.
  497. Q: Can you implement feature X?
  498. A: I can, but time is limited, and people who donate are more likely to get
  499. their feature requests implemented.
  500. Q: Work keeps going to my backup pool even though my primary pool hasn't
  501. failed?
  502. A: Cgminer checks for conditions where the primary pool is lagging and will
  503. pass some work to the backup servers under those conditions. The reason for
  504. doing this is to try its absolute best to keep the GPUs working on something
  505. useful and not risk idle periods. You can disable this behaviour with the
  506. option --failover-only.
  507. Q: Is this a virus?
  508. A: Cgminer is being packaged with other trojan scripts and some antivirus
  509. software is falsely accusing cgminer.exe as being the actual virus, rather
  510. than whatever it is being packaged with. If you installed cgminer yourself,
  511. then you do not have a virus on your computer. Complain to your antivirus
  512. software company. They seem to be flagging even source code now from cgminer
  513. as viruses, even though text source files can't do anything by themself.
  514. Q: Can you modify the display to include more of one thing in the output and
  515. less of another, or can you change the quiet mode or can you add yet another
  516. output mode?
  517. A: Everyone will always have their own view of what's important to monitor.
  518. The defaults are very sane and I have very little interest in changing this
  519. any further.
  520. Q: What are the best parameters to pass for X pool/hardware/device.
  521. A: Virtually always, the DEFAULT parameters give the best results. Most user
  522. defined settings lead to worse performance. The ONLY thing most users should
  523. need to set is the Intensity for GPUs.
  524. Q: What happened to CPU mining?
  525. A: Being increasingly irrelevant for most users, and a maintenance issue, it is
  526. no longer under active development and will not be supported. No binary builds
  527. supporting CPU mining will be released. Virtually all remaining users of CPU
  528. mining are as back ends for illegal botnets. The main reason cgminer is being
  529. inappopriately tagged as a virus by antivirus software is due to the trojans
  530. packaging a CPU mining capable version of it. There is no longer ANY CPU mining
  531. code in cgminer. If you are mining bitcoin with CPU today, you are spending
  532. 1000x more in electricity costs than you are earning in bitcoin.
  533. Q: GUI version?
  534. A: No. The RPC interface makes it possible for someone else to write one
  535. though.
  536. Q: I'm having an issue. What debugging information should I provide?
  537. A: Start cgminer with your regular commands and add -D -T --verbose and provide
  538. the full startup output and a summary of your hardware, operating system, ATI
  539. driver version and ATI stream version.
  540. Q: Why don't you provide win64 builds?
  541. A: Win32 builds work everywhere and there is precisely zero advantage to a
  542. 64 bit build on windows.
  543. Q: Is it faster to mine on windows or linux?
  544. A: It makes no difference. It comes down to choice of operating system for
  545. their various features. Linux offers much better long term stability and
  546. remote monitoring and security, while windows offers you overclocking tools
  547. that can achieve much more than cgminer can do on linux.
  548. Q: Can I mine with cgminer on a MAC?
  549. A: cgminer will compile on OSX, but the performance of GPU mining is
  550. compromised due to the opencl implementation on OSX, there is no temperature
  551. or fanspeed monitoring, and the cooling design of most MACs, despite having
  552. powerful GPUs, will usually not cope with constant usage leading to a high
  553. risk of thermal damage. It is highly recommended not to mine on a MAC unless
  554. it is to a USB device.
  555. Q: I'm trying to mine litecoin but cgminer shows MH values instead of kH and
  556. submits no shares?
  557. A: Add the --scrypt parameter.
  558. Q: I switch users on windows and my mining stops working?
  559. A: That's correct, it does. It's a permissions issue that there is no known
  560. fix for due to monitoring of GPU fanspeeds and temperatures. If you disable
  561. the monitoring with --no-adl it should switch okay.
  562. Q: My network gets slower and slower and then dies for a minute?
  563. A; Try the --net-delay option.
  564. Q: How do I tune for p2pool?
  565. A: p2pool has very rapid expiration of work and new blocks, it is suggested you
  566. decrease intensity by 1 from your optimal value, and decrease GPU threads to 1
  567. with -g 1. It is also recommended to use --failover-only since the work is
  568. effectively like a different block chain. If mining with a minirig, it is worth
  569. adding the --bfl-range option.
  570. Q: Are OpenCL kernels from other mining software useable in cgminer?
  571. A: No, the APIs are slightly different between the different software and they
  572. will not work.
  573. Q: I run PHP on windows to access the API with the example miner.php. Why does
  574. it fail when php is installed properly but I only get errors about Sockets not
  575. working in the logs?
  576. A: http://us.php.net/manual/en/sockets.installation.php
  577. Q: What is a PGA?
  578. A: At the moment, cgminer supports 4 FPGAs: BitForce, Icarus, ModMiner, and Ztex.
  579. They are Field-Programmable Gate Arrays that have been programmed to do Bitcoin
  580. mining. Since the acronym needs to be only 3 characters, the "Field-" part has
  581. been skipped.
  582. Q: What is an ASIC?
  583. A: Cgminer currently supports 2 ASICs: Avalon and BitForce SC devices. They
  584. are Application Specify Integrated Circuit devices and provide the highest
  585. performance per unit power due to being dedicated to only one purpose.
  586. Q: Can I mine scrypt with FPGAs or ASICs?
  587. A: No.
  588. Q: What is stratum and how do I use it?
  589. A: Stratum is a protocol designed for pooled mining in such a way as to
  590. minimise the amount of network communications, yet scale to hardware of any
  591. speed. With versions of cgminer 2.8.0+, if a pool has stratum support, cgminer
  592. will automatically detect it and switch to the support as advertised if it can.
  593. Stratum uses direct TCP connections to the pool and thus it will NOT currently
  594. work through a http proxy but will work via a socks proxy if you need to use
  595. one. If you input the stratum port directly into your configuration, or use the
  596. special prefix "stratum+tcp://" instead of "http://", cgminer will ONLY try to
  597. use stratum protocol mining. The advantages of stratum to the miner are no
  598. delays in getting more work for the miner, less rejects across block changes,
  599. and far less network communications for the same amount of mining hashrate. If
  600. you do NOT wish cgminer to automatically switch to stratum protocol even if it
  601. is detected, add the --fix-protocol option.
  602. Q: Why don't the statistics add up: Accepted, Rejected, Stale, Hardware Errors,
  603. Diff1 Work, etc. when mining greater than 1 difficulty shares?
  604. A: As an example, if you look at 'Difficulty Accepted' in the RPC API, the number
  605. of difficulty shares accepted does not usually exactly equal the amount of work
  606. done to find them. If you are mining at 8 difficulty, then you would expect on
  607. average to find one 8 difficulty share, per 8 single difficulty shares found.
  608. However, the number is actually random and converges over time, it is an average,
  609. not an exact value, thus you may find more or less than the expected average.
  610. Q: Why do the scrypt diffs not match with the current difficulty target?
  611. A: The current scrypt block difficulty is expressed in terms of how many
  612. multiples of the BTC difficulty it currently is (eg 28) whereas the shares of
  613. "difficulty 1" are actually 65536 times smaller than the BTC ones. The diff
  614. expressed by cgminer is as multiples of difficulty 1 shares.
  615. Q: Can I make a donation in litecoin?
  616. A: Yes, see SCRYPT-README for the address, but the author prefers bitcoin if
  617. possible.
  618. Q: My keyboard input momentarily pauses or repeats keys every so often on
  619. windows while mining?
  620. A: The USB implementation on windows can be very flaky on some hardware and
  621. every time cgminer looks for new hardware to hotplug it it can cause these
  622. sorts of problems. You can disable hotplug with:
  623. --hotplug 0
  624. Q: Can I use a proxy?
  625. A: Proxies only work with the getwork and GBT protocols using the --proxy
  626. command. If you wish to use a proxy with stratum, people have supported
  627. success with various 3rd party tools like proxifier.
  628. Q: What should my Work Utility (WU) be?
  629. A: Work utility is the product of hashrate * luck and only stabilises over a
  630. very long period of time. Assuming all your work is valid work, bitcoin mining
  631. should produce a work utility of approximately 1 per 71.6MH. This means at
  632. 5GH you should have a WU of 5000 / 71.6 or ~ 69. You cannot make your machine
  633. do "better WU" than this - it is luck related. However you can make it much
  634. worse if your machine produces a lot of hardware errors producing invalid work.
  635. ---
  636. This code is provided entirely free of charge by the programmer in his spare
  637. time so donations would be greatly appreciated. Please consider donating to the
  638. address below.
  639. Con Kolivas <kernel@kolivas.org>
  640. 15qSxP1SQcUX3o4nhkfdbgyoWEFMomJ4rZ