README 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058
  1. This is a multi-threaded multi-pool FPGA and ASIC miner for bitcoin.
  2. This code is provided entirely free of charge by the programmer in his spare
  3. time so donations would be greatly appreciated. Please consider donating to the
  4. address below.
  5. Con Kolivas <kernel@kolivas.org>
  6. 15qSxP1SQcUX3o4nhkfdbgyoWEFMomJ4rZ
  7. NOTE: This code is licensed under the GPLv3. This means that the source to any
  8. modifications you make to this code MUST be provided by law if you distribute
  9. modified binaries. See COPYING for details.
  10. DOWNLOADS:
  11. http://ck.kolivas.org/apps/cgminer
  12. GIT TREE:
  13. https://github.com/ckolivas/cgminer
  14. Support thread:
  15. http://bitcointalk.org/index.php?topic=28402.0
  16. IRC Channel:
  17. irc://irc.freenode.net/cgminer
  18. SEE ALSO API-README, ASIC-README and FGPA-README FOR MORE INFORMATION ON EACH.
  19. ---
  20. EXECUTIVE SUMMARY ON USAGE:
  21. Single pool:
  22. cgminer -o http://pool:port -u username -p password
  23. Multiple pools:
  24. cgminer -o http://pool1:port -u pool1username -p pool1password -o http://pool2:port -u pool2usernmae -p pool2password
  25. Single pool with a standard http proxy:
  26. cgminer -o "http:proxy:port|http://pool:port" -u username -p password
  27. Single pool with a socks5 proxy:
  28. cgminer -o "socks5:proxy:port|http://pool:port" -u username -p password
  29. Single pool with stratum protocol support:
  30. cgminer -o stratum+tcp://pool:port -u username -p password
  31. Solo mining to local bitcoind:
  32. cgminer -o http://localhost:8332 -u username -p password --btc-address 15qSxP1SQcUX3o4nhkfdbgyoWEFMomJ4rZ
  33. The list of proxy types are:
  34. http: standard http 1.1 proxy
  35. http0: http 1.0 proxy
  36. socks4: socks4 proxy
  37. socks5: socks5 proxy
  38. socks4a: socks4a proxy
  39. socks5h: socks5 proxy using a hostname
  40. If you compile cgminer with a version of CURL before 7.19.4 then some of the above will
  41. not be available. All are available since CURL version 7.19.4
  42. If you specify the --socks-proxy option to cgminer, it will only be applied to all pools
  43. that don't specify their own proxy setting like above
  44. After saving configuration from the menu, you do not need to give cgminer any
  45. arguments and it will load your configuration.
  46. Any configuration file may also contain a single
  47. "include" : "filename"
  48. to recursively include another configuration file.
  49. Writing the configuration will save all settings from all files in the output.
  50. ---
  51. BUILDING CGMINER FOR YOURSELF
  52. DEPENDENCIES:
  53. Mandatory:
  54. pkg-config http://www.freedesktop.org/wiki/Software/pkg-config
  55. libtool http://www.gnu.org/software/libtool/
  56. Optional:
  57. curl dev library http://curl.haxx.se/libcurl/
  58. (libcurl4-openssl-dev - Must tell configure --disable-libcurl otherwise
  59. it will attempt to compile it in)
  60. curses dev library
  61. (libncurses5-dev or libpdcurses on WIN32 for text user interface)
  62. libudev dev library (libudev-dev)
  63. (This is only required for USB device support and is linux only)
  64. If building from git:
  65. autoconf
  66. automake
  67. If building on Red Hat:
  68. sudo yum install autoconf automake autoreconf libtool openssl-compat-bitcoin-devel.x86_64 \
  69. curl libcurl libcurl-devel openssh
  70. If building on Ubuntu:
  71. sudo apt-get install build-essential autoconf automake libtool pkg-config \
  72. libcurl3-dev libudev-dev
  73. CGMiner specific configuration options:
  74. --enable-bmsc Compile support for BitMain Single Chain(default disabled)
  75. --enable-bitmain Compile support for BitMain Multi Chain(default disabled)
  76. --enable-avalon Compile support for Avalon (default disabled)
  77. --enable-avalon2 Compile support for Avalon2 (default disabled)
  78. --enable-avalon4 Compile support for Avalon4 (default disabled)
  79. --enable-bab Compile support for BlackArrow Bitfury (default
  80. disabled)
  81. --enable-bflsc Compile support for BFL ASICs (default disabled)
  82. --enable-bitforce Compile support for BitForce FPGAs (default
  83. disabled)
  84. --enable-bitfury Compile support for BitFury ASICs (default disabled)
  85. --enable-bitmine_A1 Compile support for Bitmine.ch A1 ASICs (default
  86. disabled)
  87. --enable-blockerupter Compile support for ASICMINER BlockErupter Tube/Prisma
  88. (default disabled)
  89. --enable-cointerra Compile support for Cointerra ASICs (default disabled)
  90. --enable-drillbit Compile support for Drillbit BitFury ASICs (default
  91. disabled)
  92. --enable-hashfast Compile support for Hashfast (default disabled)
  93. --enable-icarus Compile support for Icarus (default disabled)
  94. --enable-klondike Compile support for Klondike (default disabled)
  95. --enable-knc Compile support for KnC miners (default disabled)
  96. --enable-minion Compile support for Minion BlackArrow ASIC (default
  97. disabled)
  98. --enable-modminer Compile support for ModMiner FPGAs(default disabled)
  99. --enable-sp10 Compile support for Spondoolies SP10 (default
  100. disabled)
  101. --enable-sp30 Compile support for Spondoolies SP30 (default
  102. disabled)
  103. --disable-libcurl Disable building with libcurl for getwork and GBT
  104. support
  105. --without-curses Compile support for curses TUI (default enabled)
  106. --with-system-libusb Compile against dynamic system libusb (default use
  107. included static libusb)
  108. Basic *nix build instructions:
  109. To actually build:
  110. ./autogen.sh # only needed if building from git repo
  111. CFLAGS="-O2 -Wall -march=native" ./configure <options>
  112. make
  113. No installation is necessary. You may run cgminer from the build
  114. directory directly, but you may do make install if you wish to install
  115. cgminer to a system location or location you specified.
  116. Building for windows:
  117. It is actually easiest to build a windows binary using cross compilation tools
  118. provided by "mxe" available at http://mxe.cc/ (use the 32 bit one!)
  119. Once you have followed the instructions for building mxe:
  120. export PATH=(path/to/mxe)/usr/bin/:$PATH
  121. CFLAGS="-O2 -Wall -W -march=i686" ./configure --host=i686-pc-mingw32 <options>
  122. make
  123. Native WIN32 build instructions: see windows-build.txt but these instructions
  124. are now hopelessly out of date.
  125. ---
  126. Usage instructions: Run "cgminer --help" to see options:
  127. Usage: cgminer [-DdElmpPQqUsTouOchnV]
  128. Options for both config file and command line:
  129. --anu-freq <arg> Set AntminerU1/2 frequency in MHz, range 125-500 (default: 250.0)
  130. --api-allow <arg> Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]
  131. --api-description <arg> Description placed in the API status header, default: cgminer version
  132. --api-groups <arg> API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use
  133. --api-listen Enable API, default: disabled
  134. --api-mcast Enable API Multicast listener, default: disabled
  135. --api-mcast-addr <arg> API Multicast listen address
  136. --api-mcast-code <arg> Code expected in the API Multicast message, don't use '-'
  137. --api-mcast-des <arg> Description appended to the API Multicast reply, default: ''
  138. --api-mcast-port <arg> API Multicast listen port (default: 4028)
  139. --api-network Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1
  140. --api-port <arg> Port number of miner API (default: 4028)
  141. --au3-freq <arg> Set AntminerU3 frequency in MHz, range 100-250 (default: 225.0)
  142. --au3-volt <arg> Set AntminerU3 voltage in mv, range 725-850, 0 to not set (default: 750)
  143. --avalon-auto Adjust avalon overclock frequency dynamically for best hashrate
  144. --avalon-cutoff <arg> Set avalon overheat cut off temperature (default: 60)
  145. --avalon-fan <arg> Set fanspeed percentage for avalon, single value or range (default: 20-100)
  146. --avalon-freq <arg> Set frequency range for avalon-auto, single value or range
  147. --avalon-options <arg> Set avalon options baud:miners:asic:timeout:freq:tech
  148. --avalon-temp <arg> Set avalon target temperature (default: 50)
  149. --avalon2-freq Set frequency range for Avalon2, single value or range
  150. --avalon2-voltage Set Avalon2 core voltage, in millivolts
  151. --avalon2-fan Set Avalon2 target fan speed
  152. --avalon2-cutoff <arg> Set Avalon2 overheat cut off temperature (default: 88)
  153. --avalon2-fixed-speed Set Avalon2 fan to fixed speed
  154. --avalon4-automatic-voltage Automatic adjust voltage base on module DH
  155. --avalon4-voltage Set Avalon4 core voltage, in millivolts, step: 125
  156. --avalon4-freq Set frequency for Avalon4, 1 to 3 values, example: 445:385:370
  157. --avalon4-fan Set Avalon4 target fan speed range
  158. --avalon4-temp <arg> Set Avalon4 target temperature (default: 42)
  159. --avalon4-cutoff <arg> Set Avalon4 overheat cut off temperature (default: 65)
  160. --avalon4-polling-delay <arg> Set Avalon4 polling delay value (ms) (default: 20)
  161. --avalon4-ntime-offset <arg> Set Avalon4 MM ntime rolling max offset (default: 4)
  162. --avalon4-aucspeed <arg> Set Avalon4 AUC IIC bus speed (default: 400000)
  163. --avalon4-aucxdelay <arg> Set Avalon4 AUC IIC xfer read delay, 4800 ~= 1ms (default: 9600)
  164. --bab-options <arg> Set BaB options max:def:min:up:down:hz:delay:trf
  165. --balance Change multipool strategy from failover to even share balance
  166. --benchfile <arg> Run cgminer in benchmark mode using a work file - produces no shares
  167. --benchfile-display Display each benchfile nonce found
  168. --benchmark Run cgminer in benchmark mode - produces no shares
  169. --bet-clk <arg> Set clockspeed of ASICMINER Tube/Prisma to (arg+1)*10MHz (default: 23)
  170. --bfl-range Use nonce range on bitforce devices if supported
  171. --bflsc-overheat <arg> Set overheat temperature where BFLSC devices throttle, 0 to disable (default: 85)
  172. --bitburner-fury-voltage <arg> Set BitBurner Fury core voltage, in millivolts
  173. --bitburner-fury-options <arg> Override avalon-options for BitBurner Fury boards baud:miners:asic:timeout:freq
  174. --bitburner-voltage <arg> Set BitBurner (Avalon) core voltage, in millivolts
  175. --bitmain-auto Adjust bitmain overclock frequency dynamically for best hashrate
  176. --bitmain-cutoff Set bitmain overheat cut off temperature
  177. --bitmain-fan Set fanspeed percentage for bitmain, single value or range (default: 20-100)
  178. --bitmain-freq Set frequency range for bitmain-auto, single value or range
  179. --bitmain-hwerror Set bitmain device detect hardware error
  180. --bitmain-options Set bitmain options baud:miners:asic:timeout:freq
  181. --bitmain-temp Set bitmain target temperature
  182. --bxf-bits <arg> Set max BXF/HXF bits for overclocking (default: 54)
  183. --bxf-temp-target <arg> Set target temperature for BXF/HXF devices (default: 82)
  184. --bxm-bits <arg> Set BXM bits for overclocking (default: 54)
  185. --btc-address <arg> Set bitcoin target address when solo mining to bitcoind
  186. --btc-sig <arg> Set signature to add to coinbase when solo mining (optional)
  187. --compact Use compact display without per device statistics
  188. --debug|-D Enable debug output
  189. --disable-rejecting Automatically disable pools that continually reject shares
  190. --drillbit-options <arg> Set drillbit options <int|ext>:clock[:clock_divider][:voltage]
  191. --expiry|-E <arg> Upper bound on how many seconds after getting work we consider a share from it stale (default: 120)
  192. --failover-only Don't leak work to backup pools when primary pool is lagging
  193. --fix-protocol Do not redirect to a different getwork protocol (eg. stratum)
  194. --hfa-hash-clock <arg> Set hashfast clock speed (default: 550)
  195. --hfa-fail-drop <arg> Set how many MHz to drop clockspeed each failure on an overlocked hashfast device (default: 10)
  196. --hfa-fan <arg> Set fanspeed percentage for hashfast, single value or range (default: 10-85)
  197. --hfa-name <arg> Set a unique name for a single hashfast device specified with --usb or the first device found
  198. --hfa-noshed Disable hashfast dynamic core disabling feature
  199. --hfa-options <arg> Set hashfast options name:clock (comma separated)
  200. --hfa-temp-overheat <arg> Set the hashfast overheat throttling temperature (default: 95)
  201. --hfa-temp-target <arg> Set the hashfast target temperature (0 to disable) (default: 88)
  202. --hro-freq Set the hashratio clock frequency (default: 280)
  203. --hotplug <arg> Seconds between hotplug checks (0 means never check)
  204. --klondike-options <arg> Set klondike options clock:temptarget
  205. --load-balance Change multipool strategy from failover to quota based balance
  206. --log|-l <arg> Interval in seconds between log output (default: 5)
  207. --lowmem Minimise caching of shares for low memory applications
  208. --minion-chipreport <arg> Seconds to report chip 5min hashrate, range 0-100 (default: 0=disabled)
  209. --minion-freq <arg> Set minion chip frequencies in MHz, single value or comma list, range 100-1400 (default: 1200)
  210. --minion-freqchange Millisecond total time to do frequency changes (default: 1000)
  211. --minion-freqpercent Percentage to use when starting up a chip (default: 70%)
  212. --minion-idlecount Report when IdleCount is >0 or changes
  213. --minion-ledcount Turn off led when more than this many chips below the ledlimit (default: 0)
  214. --minion-ledlimit Turn off led when chips GHs are below this (default: 90)
  215. --minion-noautofreq Disable automatic frequency adjustment
  216. --minion-overheat Enable directly halting any chip when the status exceeds 100C
  217. --minion-spidelay Add a delay in microseconds after each SPI I/O
  218. --minion-spireset SPI regular reset: iNNN for I/O count or sNNN for seconds - 0 means none
  219. --minion-spisleep Sleep time in milliseconds when doing an SPI reset
  220. --minion-temp <arg> Set minion chip temperature threshold, single value or comma list, range 120-160 (default: 135C)
  221. --monitor|-m <arg> Use custom pipe cmd for output messages
  222. --nfu-bits <arg> Set nanofury bits for overclocking, range 32-63 (default: 50)
  223. --net-delay Impose small delays in networking to not overload slow routers
  224. --no-submit-stale Don't submit shares if they are detected as stale
  225. --osm-led-mode <arg> Set LED mode for OneStringMiner devices (default: 4)
  226. --pass|-p <arg> Password for bitcoin JSON-RPC server
  227. --per-device-stats Force verbose mode and output per-device statistics
  228. --protocol-dump|-P Verbose dump of protocol-level activities
  229. --queue|-Q <arg> Minimum number of work items to have queued (0+) (default: 1)
  230. --quiet|-q Disable logging output, display status and errors
  231. --quota|-U <arg> quota;URL combination for server with load-balance strategy quotas
  232. --real-quiet Disable all output
  233. --rock-freq <arg> Set RockMiner frequency in MHz, range 200-400 (default: 270)
  234. --rotate <arg> Change multipool strategy from failover to regularly rotate at N minutes (default: 0)
  235. --round-robin Change multipool strategy from failover to round robin on failure
  236. --scan-time|-s <arg> Upper bound on time spent scanning current work, in seconds (default: -1)
  237. --sched-start <arg> Set a time of day in HH:MM to start mining (a once off without a stop time)
  238. --sched-stop <arg> Set a time of day in HH:MM to stop mining (will quit without a start time)
  239. --sharelog <arg> Append share log to file
  240. --shares <arg> Quit after mining N shares (default: unlimited)
  241. --socks-proxy <arg> Set socks4 proxy (host:port)
  242. --suggest-diff <arg> Suggest miner difficulty for pool to user (default: none)
  243. --syslog Use system log for output messages (default: standard error)
  244. --temp-cutoff <arg> Temperature where a device will be automatically disabled, one value or comma separated list (default: 95)
  245. --text-only|-T Disable ncurses formatted screen output
  246. --url|-o <arg> URL for bitcoin JSON-RPC server
  247. --usb <arg> USB device selection
  248. --user|-u <arg> Username for bitcoin JSON-RPC server
  249. --userpass|-O <arg> Username:Password pair for bitcoin JSON-RPC server
  250. --verbose Log verbose output to stderr as well as status output
  251. --widescreen Use extra wide display without toggling
  252. --worktime Display extra work time debug information
  253. Options for command line only:
  254. --config|-c <arg> Load a JSON-format configuration file
  255. See example.conf for an example configuration.
  256. --default-config <arg> Specify the filename of the default config file
  257. Loaded at start and used when saving without a name.
  258. --help|-h Print this message
  259. --ndevs|-n Display all USB devices and exit
  260. --version|-V Display version and exit
  261. Silent USB device (ASIC and FPGA) options:
  262. --icarus-options <arg> Set specific FPGA board configurations - one set of values for all or comma separated
  263. --icarus-timing <arg> Set how the Icarus timing is calculated - one setting/value for all or comma separated
  264. --usb-dump (See FPGA-README)
  265. See FGPA-README or ASIC-README for more information regarding these.
  266. ASIC only options:
  267. --anu-freq <arg> Set AntminerU1/2 frequency in MHz, range 125-500 (default: 250.0)
  268. --au3-freq <arg> Set AntminerU3 frequency in MHz, range 100-250 (default: 225.0)
  269. --au3-volt <arg> Set AntminerU3 voltage in mv, range 725-850, 0 to not set (default: 750)
  270. --avalon-auto Adjust avalon overclock frequency dynamically for best hashrate
  271. --avalon-cutoff <arg> Set avalon overheat cut off temperature (default: 60)
  272. --avalon-fan <arg> Set fanspeed percentage for avalon, single value or range (default: 20-100)
  273. --avalon-freq <arg> Set frequency range for avalon-auto, single value or range
  274. --avalon-options <arg> Set avalon options baud:miners:asic:timeout:freq:tech
  275. --avalon-temp <arg> Set avalon target temperature (default: 50)
  276. --avalon2-freq Set frequency range for Avalon2, single value or range
  277. --avalon2-voltage Set Avalon2 core voltage, in millivolts
  278. --avalon2-fan Set Avalon2 target fan speed
  279. --avalon2-cutoff <arg> Set Avalon2 overheat cut off temperature (default: 88)
  280. --avalon2-fixed-speed Set Avalon2 fan to fixed speed
  281. --avalon4-automatic-voltage Automatic adjust voltage base on module DH
  282. --avalon4-voltage Set Avalon4 core voltage, in millivolts, step: 125
  283. --avalon4-freq Set frequency for Avalon4, 1 to 3 values, example: 445:385:370
  284. --avalon4-fan Set Avalon4 target fan speed range
  285. --avalon4-temp <arg> Set Avalon4 target temperature (default: 42)
  286. --avalon4-cutoff <arg> Set Avalon4 overheat cut off temperature (default: 65)
  287. --avalon4-polling-delay <arg> Set Avalon4 polling delay value (ms) (default: 20)
  288. --avalon4-ntime-offset <arg> Set Avalon4 MM ntime rolling max offset (default: 4)
  289. --avalon4-aucspeed <arg> Set Avalon4 AUC IIC bus speed (default: 400000)
  290. --avalon4-aucxdelay <arg> Set Avalon4 AUC IIC xfer read delay, 4800 ~= 1ms (default: 9600)
  291. --bab-options <arg> Set BaB options max:def:min:up:down:hz:delay:trf
  292. --bflsc-overheat <arg> Set overheat temperature where BFLSC devices throttle, 0 to disable (default: 90)
  293. --bitburner-fury-options <arg> Override avalon-options for BitBurner Fury boards baud:miners:asic:timeout:freq
  294. --bitburner-fury-voltage <arg> Set BitBurner Fury core voltage, in millivolts
  295. --bitburner-voltage <arg> Set BitBurner (Avalon) core voltage, in millivolts
  296. --bitmine-a1-options <ref_clk>:<sys_clk>:<spi_clk>:<max_chip>
  297. --bxf-temp-target <arg> Set target temperature for BXF devices (default: 82)
  298. --bxm-bits <arg> Set BXM bits for overclocking (default: 50)
  299. --hfa-hash-clock <arg> Set hashfast clock speed (default: 550)
  300. --hfa-fail-drop <arg> Set how many MHz to drop clockspeed each failure on an overlocked hashfast device (default: 10)
  301. --hfa-fan <arg> Set fanspeed percentage for hashfast, single value or range (default: 10-85)
  302. --hfa-name <arg> Set a unique name for a single hashfast device specified with --usb or the first device found
  303. --hfa-noshed Disable hashfast dynamic core disabling feature
  304. --hfa-temp-overheat <arg> Set the hashfast overheat throttling temperature (default: 95)
  305. --hfa-temp-target <arg> Set the hashfast target temperature (0 to disable) (default: 88)
  306. --hro-freq Set the hashratio clock frequency (default: 280)
  307. --klondike-options <arg> Set klondike options clock:temptarget
  308. --rock-freq <arg> Set RockMiner frequency in MHz, range 125-500 (default: 270)
  309. See ASIC-README for more information regarding these.
  310. FPGA only options:
  311. --bfl-range Use nonce range on bitforce devices if supported
  312. See FGPA-README for more information regarding this.
  313. Cgminer should automatically find all of your Avalon ASIC, BFL ASIC, BitForce
  314. FPGAs, Icarus bitstream FPGAs, Klondike ASIC, ASICMINER usb block erupters,
  315. KnC ASICs, BaB ASICs, Hashfast ASICs, ModMiner FPGAs, BPMC/BGMC BF1 USB ASICs,
  316. Bi*fury USB ASICs, Onestring miner USB ASICs, Hexfury USB ASICs, Nanofury USB
  317. ASICs, Antminer U1/U2/U2+ U3 USB ASICs, Cointerra devices, BFx2 USB ASICs,
  318. Rockminer R-Box/RK-Box/T1 USB ASICs, Avalon2/3/4 USB ASICs and Hashratio USB
  319. ASICs.
  320. ---
  321. SETTING UP USB DEVICES
  322. WINDOWS:
  323. On windows, the direct USB support requires the installation of a WinUSB
  324. driver (NOT the ftdi_sio driver), and attach it to the chosen USB device.
  325. When configuring your device, plug it in and wait for windows to attempt to
  326. install a driver on its own. It may think it has succeeded or failed but wait
  327. for it to finish regardless. This is NOT the driver you want installed. At this
  328. point you need to associate your device with the WinUSB driver. The easiest
  329. way to do this is to use the zadig utility which you must right click on and
  330. run as administrator. Then once you plug in your device you can choose the
  331. "list all devices" from the "option" menu and you should be able to see the
  332. device as something like: "BitFORCE SHA256 SC". Choose the install or replace
  333. driver option and select WinUSB. You can either google for zadig or download
  334. it from the cgminer directory in the DOWNLOADS link above.
  335. When you first switch a device over to WinUSB with zadig and it shows that
  336. correctly on the left of the zadig window, but it still gives permission
  337. errors, you may need to unplug the USB miner and then plug it back in. Some
  338. users may need to reboot at this point.
  339. LINUX:
  340. The short version:
  341. sudo cp 01-cgminer.rules /etc/udev/rules.d/
  342. The long version:
  343. On linux, the direct USB support requires no drivers at all. However due to
  344. permissions issues, you may not be able to mine directly on the devices as a
  345. regular user without giving the user access to the device or by mining as
  346. root (administrator). In order to give your regular user access, you can make
  347. him a member of the plugdev group with the following commands:
  348. sudo usermod -G plugdev -a `whoami`
  349. If your distribution does not have the plugdev group you can create it with:
  350. sudo groupadd plugdev
  351. In order for the USB devices to instantly be owned by the plugdev group and
  352. accessible by anyone from the plugdev group you can copy the file
  353. "01-cgminer.rules" from the cgminer archive into the /etc/udev/rules.d
  354. directory with the following command:
  355. sudo cp 01-cgminer.rules /etc/udev/rules.d/
  356. After this you can either manually restart udev and re-login, or more easily
  357. just reboot.
  358. OSX:
  359. On OSX, like Linux, no drivers need to be installed. However some devices
  360. like the bitfury USB sticks automatically load a driver thinking they're a
  361. modem and the driver needs to be unloaded for cgminer to work:
  362. sudo kextunload -b com.apple.driver.AppleUSBCDC
  363. sudo kextunload -b com.apple.driver.AppleUSBCDCACMData
  364. There may be a limit to the number of USB devices that you are allowed to start.
  365. The following set of commands, followed by a reboot will increase that:
  366. sudo su
  367. touch /etc/sysctl.conf
  368. echo kern.sysv.semume=100 >> /etc/sysctl.conf
  369. chown root:wheel /etc/sysctl.conf
  370. chmod 0644 /etc/sysctl.conf
  371. Some devices need superuser access to mine on them so cgminer may need to
  372. be started with sudo
  373. i.e.:
  374. sudo cgminer <insert commands here>
  375. ---
  376. Advanced USB options:
  377. The --usb option can restrict how many USB devices are found:
  378. --usb 1:2,1:3,1:4,1:*
  379. or
  380. --usb BAS:1,BFL:1,MMQ:0,ICA:0,KLN:0
  381. or
  382. --usb :10
  383. You can only use one of the above 3
  384. The first version
  385. --usb 1:2,1:3,1:4,1:*
  386. allows you to select which devices to mine on with a list of USB
  387. bus_number:device_address
  388. All other USB devices will be ignored
  389. Hotplug will also only look at the devices matching the list specified and
  390. find nothing new if they are all in use
  391. You can specify just the USB bus_number to find all devices like 1:*
  392. which means any devices on USB bus_number 1
  393. This is useful if you unplug a device then plug it back in the same port,
  394. it usually reappears with the same bus_number but a different device_address
  395. You can see the list of all USB devices on linux with 'sudo lsusb'
  396. Cgminer will list the recognised USB devices
  397. with the '-n' option or the
  398. '--usb-dump 0' option
  399. The '--usb-dump N' option with a value of N greater than 0 will dump a lot
  400. of details about each recognised USB device
  401. If you wish to see all USB devices, include the --usb-list-all option
  402. The second version
  403. --usb BAS:1,BFL:1,MMQ:0,ICA:0,KLN:0
  404. allows you to specify how many devices to choose based on each device
  405. driver cgminer has - the current USB drivers are:
  406. AVA, BAS, BFL, BF1, DRB, HFA, ICA, KLN and MMQ.
  407. N.B. you can only specify which device driver to limit, not the type of
  408. each device, e.g. with BAS:n you can limit how many BFL ASIC devices will
  409. be checked, but you cannot limit the number of each type of BFL ASIC
  410. Also note that the MMQ count is the number of MMQ backplanes you have
  411. not the number of MMQ FPGAs
  412. The third version
  413. --usb :10
  414. means only use a maximum of 10 devices of any supported USB devices
  415. Once cgminer has 10 devices it will not configure any more and hotplug will
  416. not scan for any more
  417. If one of the 10 devices stops working, hotplug - if enabled, as is default
  418. - will scan normally again until it has 10 devices
  419. --usb :0 will disable all USB I/O other than to initialise libusb
  420. ---
  421. WHILE RUNNING:
  422. The following options are available while running with a single keypress:
  423. [U]SB management [P]ool management [S]ettings [D]isplay options [Q]uit
  424. U gives you:
  425. [S]ummary of device information
  426. [E]nable device
  427. [D]isable device
  428. [U]nplug to allow hotplug restart
  429. [R]eset device USB
  430. [L]ist all known devices
  431. [B]lacklist current device from current instance of cgminer
  432. [W]hitelist previously blacklisted device
  433. [H]otplug interval (0 to disable)
  434. P gives you:
  435. Current pool management strategy: Failover
  436. [F]ailover only disabled
  437. [A]dd pool [R]emove pool [D]isable pool [E]nable pool
  438. [C]hange management strategy [S]witch pool [I]nformation
  439. S gives you:
  440. [Q]ueue: 1
  441. [S]cantime: 60
  442. [E]xpiry: 120
  443. [W]rite config file
  444. [C]gminer restart
  445. D gives you:
  446. [N]ormal [C]lear [S]ilent mode (disable all output)
  447. [D]ebug:off
  448. [P]er-device:off
  449. [Q]uiet:off
  450. [V]erbose:off
  451. [R]PC debug:off
  452. [W]orkTime details:off
  453. co[M]pact: off
  454. [T]oggle status switching:enabled
  455. [Z]ero statistics
  456. [L]og interval:5
  457. Q quits the application.
  458. The running log shows output like this:
  459. [2013-11-09 11:04:41] Accepted 01b3bde7 Diff 150/128 AVA 1 pool 0
  460. [2013-11-09 11:04:49] Accepted 015df995 Diff 187/128 AVA 1 pool 0
  461. [2013-11-09 11:04:50] Accepted 01163b68 Diff 236/128 AVA 1 pool 0
  462. [2013-11-09 11:04:53] Accepted 9f745840 Diff 411/128 BAS 1 pool 0
  463. The 8 byte hex value are the 1st nonzero bytes of the share being submitted to
  464. the pool. The 2 diff values are the actual difficulty target that share reached
  465. followed by the difficulty target the pool is currently asking for.
  466. ---
  467. Also many issues and FAQs are covered in the forum thread
  468. dedicated to this program,
  469. http://forum.bitcoin.org/index.php?topic=28402.0
  470. DISPLAY:
  471. The display is roughly split into two portions, the top status window and the
  472. bottom scrolling log window.
  473. STATUS WINDOW
  474. The status window is split into overall status and per device status.
  475. Overall status:
  476. The output line shows the following:
  477. (5s):2.469T (1m):2.677T (5m):2.040T (15m):1.014T (avg):2.733Th/s
  478. These are exponentially decaying average hashrates over 5s/1m/5m/15m and an
  479. average since the start.
  480. Followed by:
  481. A:290391 R:5101 HW:145 WU:37610.4/m
  482. Each column is as follows:
  483. A: The total difficulty of Accepted shares
  484. R: The total difficulty of Rejected shares
  485. HW: The number of HardWare errors
  486. WU: The Work Utility defined as the number of diff1 shares work / minute
  487. (accepted or rejected).
  488. alternating with:
  489. ST: 22 SS: 0 NB: 2 LW: 356090 GF: 0 RF: 0
  490. ST is STaged work items (ready to use).
  491. SS is Stale Shares discarded (detected and not submitted so don't count as rejects)
  492. NB is New Blocks detected on the network
  493. LW is Locally generated Work items
  494. GF is Getwork Fail Occasions (server slow to provide work)
  495. RF is Remote Fail occasions (server slow to accept work)
  496. Followed by:
  497. Connected to pool.com diff 3.45K with stratum as user me
  498. The diff shown is the current vardiff requested by the pool currently being
  499. mined at.
  500. Followed by:
  501. Block: ca0d237f... Diff:5.01G Started: [00:14:27] Best share: 1.18M
  502. This shows a short stretch about the current block, when the new block started,
  503. and the all time best difficulty share you've found since starting cgminer
  504. this time.
  505. Per device status:
  506. 6: HFS Random : 645MHz 85C 13% 0.79V | 2.152T / 1.351Th/s
  507. Each column is as follows:
  508. Temperature (if supported)
  509. Fanspeed (if supported)
  510. Voltage (if supported)
  511. A 5 second exponentially decaying average hash rate
  512. An all time average hash rate
  513. alternating with
  514. 6: HFS Random : 645MHz 86C 13% 0.80V | A:290348 R:1067 HW:88 WU:18901.8/m
  515. The total difficulty of accepted shares
  516. The total difficulty of rejected shares
  517. The number of hardware erorrs
  518. The work utility defined as the number of diff1 shares work / minute
  519. LOG WINDOW
  520. All running information is shown here, usually share submission results and
  521. block update notifications, along with device messages and warnings.
  522. [2014-03-29 00:24:09] Accepted 1397768d Diff 3.35K/2727 HFS 0 pool 0
  523. [2014-03-29 00:24:13] Stratum from pool 0 detected new block
  524. ---
  525. MULTIPOOL
  526. FAILOVER STRATEGIES WITH MULTIPOOL:
  527. A number of different strategies for dealing with multipool setups are
  528. available. Each has their advantages and disadvantages so multiple strategies
  529. are available by user choice, as per the following list:
  530. FAILOVER:
  531. The default strategy is failover. This means that if you input a number of
  532. pools, it will try to use them as a priority list, moving away from the 1st
  533. to the 2nd, 2nd to 3rd and so on. If any of the earlier pools recover, it will
  534. move back to the higher priority ones.
  535. ROUND ROBIN:
  536. This strategy only moves from one pool to the next when the current one falls
  537. idle and makes no attempt to move otherwise.
  538. ROTATE:
  539. This strategy moves at user-defined intervals from one active pool to the next,
  540. skipping pools that are idle.
  541. LOAD BALANCE:
  542. This strategy sends work to all the pools on a quota basis. By default, all
  543. pools are allocated equal quotas unless specified with --quota. This
  544. apportioning of work is based on work handed out, not shares returned so is
  545. independent of difficulty targets or rejected shares. While a pool is disabled
  546. or dead, its quota is dropped until it is re-enabled. Quotas are forward
  547. looking, so if the quota is changed on the fly, it only affects future work.
  548. If all pools are set to zero quota or all pools with quota are dead, it will
  549. fall back to a failover mode. See quota below for more information.
  550. The failover-only flag has special meaning in combination with load-balance
  551. mode and it will distribute quota back to priority pool 0 from any pools that
  552. are unable to provide work for any reason so as to maintain quota ratios
  553. between the rest of the pools.
  554. BALANCE:
  555. This strategy monitors the amount of difficulty 1 shares solved for each pool
  556. and uses it to try to end up doing the same amount of work for all pools.
  557. ---
  558. QUOTAS
  559. The load-balance multipool strategy works off a quota based scheduler. The
  560. quotas handed out by default are equal, but the user is allowed to specify any
  561. arbitrary ratio of quotas. For example, if all the quota values add up to 100,
  562. each quota value will be a percentage, but if 2 pools are specified and pool0
  563. is given a quota of 1 and pool1 is given a quota of 9, pool0 will get 10% of
  564. the work and pool1 will get 90%. Quotas can be changed on the fly by the API,
  565. and do not act retrospectively. Setting a quota to zero will effectively
  566. disable that pool unless all other pools are disabled or dead. In that
  567. scenario, load-balance falls back to regular failover priority-based strategy.
  568. While a pool is dead, it loses its quota and no attempt is made to catch up
  569. when it comes back to life.
  570. To specify quotas on the command line, pools should be specified with a
  571. semicolon separated --quota(or -U) entry instead of --url. Pools specified with
  572. --url are given a nominal quota value of 1 and entries can be mixed.
  573. For example:
  574. --url poola:porta -u usernamea -p passa --quota "2;poolb:portb" -u usernameb -p passb
  575. Will give poola 1/3 of the work and poolb 2/3 of the work.
  576. Writing configuration files with quotas is likewise supported. To use the above
  577. quotas in a configuration file they would be specified thus:
  578. "pools" : [
  579. {
  580. "url" : "poola:porta",
  581. "user" : "usernamea",
  582. "pass" : "passa"
  583. },
  584. {
  585. "quota" : "2;poolb:portb",
  586. "user" : "usernameb",
  587. "pass" : "passb"
  588. }
  589. ]
  590. ---
  591. SOLO MINING
  592. Solo mining can be done efficiently as a single pool entry or a backup to
  593. any other pooled mining and it is recommended everyone have solo mining set up
  594. as their final backup in case all their other pools are DDoSed/down for the
  595. security of the network. To enable solo mining, one must be running a local
  596. bitcoind/bitcoin-qt or have one they have rpc access to. To do this, edit your
  597. bitcoind configuration file (bitcoin.conf) with the following extra lines,
  598. using your choice of username and password:
  599. rpcuser=username
  600. rpcpassword=password
  601. Restart bitcoind, then start cgminer, pointing to the bitcoind and choose a
  602. btc address with the following options, altering to suit their setup:
  603. cgminer -o http://localhost:8332 -u username -p password --btc-address 15qSxP1SQcUX3o4nhkfdbgyoWEFMomJ4rZ
  604. Note the http:// is mandatory for solo mining.
  605. ---
  606. LOGGING
  607. cgminer will log to stderr if it detects stderr is being redirected to a file.
  608. To enable logging simply add 2>logfile.txt to your command line and logfile.txt
  609. will contain the logged output at the log level you specify (normal, verbose,
  610. debug etc.)
  611. In other words if you would normally use:
  612. ./cgminer -o xxx -u yyy -p zzz
  613. if you use
  614. ./cgminer -o xxx -u yyy -p zzz 2>logfile.txt
  615. it will log to a file called logfile.txt and otherwise work the same.
  616. There is also the -m option on linux which will spawn a command of your choice
  617. and pipe the output directly to that command.
  618. The WorkTime details 'debug' option adds details on the end of each line
  619. displayed for Accepted or Rejected work done. An example would be:
  620. <-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
  621. The first 2 hex codes are the previous block hash, the rest are reported in
  622. seconds unless stated otherwise:
  623. The previous hash is followed by the getwork mode used M:X where X is one of
  624. P:Pool, T:Test Pool, L:LP or B:Benchmark,
  625. then D:d.ddd is the difficulty required to get a share from the work,
  626. then G:hh:mm:ss:n.nnn, which is when the getwork or LP was sent to the pool and
  627. the n.nnn is how long it took to reply,
  628. followed by 'O' on it's own if it is an original getwork, or 'C:n.nnn' if it was
  629. a clone with n.nnn stating how long after the work was recieved that it was cloned,
  630. (m.mmm) is how long from when the original work was received until work started,
  631. W:n.nnn is how long the work took to process until it was ready to submit,
  632. (m.mmm) is how long from ready to submit to actually doing the submit, this is
  633. usually 0.000 unless there was a problem with submitting the work,
  634. S:n.nnn is how long it took to submit the completed work and await the reply,
  635. R:hh:mm:ss is the actual time the work submit reply was received
  636. If you start cgminer with the --sharelog option, you can get detailed
  637. information for each share found. The argument to the option may be "-" for
  638. standard output (not advisable with the ncurses UI), any valid positive number
  639. for that file descriptor, or a filename.
  640. To log share data to a file named "share.log", you can use either:
  641. ./cgminer --sharelog 50 -o xxx -u yyy -p zzz 50>share.log
  642. ./cgminer --sharelog share.log -o xxx -u yyy -p zzz
  643. For every share found, data will be logged in a CSV (Comma Separated Value)
  644. format:
  645. timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  646. For example (this is wrapped, but it's all on one line for real):
  647. 1335313090,reject,
  648. ffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000,
  649. http://localhost:8337,ASC0,0,
  650. 6f983c918f3299b58febf95ec4d0c7094ed634bc13754553ec34fc3800000000,
  651. 00000001a0980aff4ce4a96d53f4b89a2d5f0e765c978640fe24372a000001c5
  652. 000000004a4366808f81d44f26df3d69d7dc4b3473385930462d9ab707b50498
  653. f681634a4f1f63d01a0cd43fb338000000000080000000000000000000000000
  654. 0000000000000000000000000000000000000000000000000000000080020000
  655. ---
  656. BENCHMARK
  657. The --benchmark option hashes a single fixed work item over and over and does
  658. not submit shares to any pools.
  659. The --benchfile <arg> option hashes the work given in the file <arg> supplied.
  660. The format of the work file is:
  661. version,merkleroot,prevhash,diffbits,noncetime
  662. Any empty line or any line starting with '#' or '/' is ignored.
  663. When it reaches the end of the file it continues back at the top.
  664. The format of the data items matches the byte ordering and format of the
  665. the bitcoind getblock RPC output.
  666. An example file containing bitcoin block #1 would be:
  667. # Block 1
  668. 1,0e3e2357e806b6cdb1f70b54c3a3a17b6714ee1f0e68bebb44a74b1efd512098,00000000001
  669. 9d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f,1d00ffff,1231469665
  670. However, the work data should be one line without the linebreak in the middle
  671. If you use --benchfile <arg>, then --benchfile-display will output a log line,
  672. for each nonce found, showing the nonce value in decimal and hex and the work
  673. used to find it in hex.
  674. ---
  675. RPC API
  676. For RPC API details see the API-README file
  677. ---
  678. FAQ
  679. Q: Help, I've started cgminer and everything reads zero!?
  680. A: Welcome to bitcoin mining. Your computer by itself cannot mine bitcoin no
  681. matter how powerful it is. You have to purchase dedicated mining hardware
  682. called ASICs to plug into your computer. See Q regarding ASICs below.
  683. Q: I have multiple USB stick devices but I can't get them all to work at once?
  684. A: Very few USB hubs deliver the promised power required to run as many devices
  685. as they fit if all of them draw power from USB.
  686. Q: I've plugged my devices into my USB hub but nothing shows up?
  687. A: RPis and Windows have incomplete or non-standard USB3 support so they may
  688. never work. It may be possible to get a USB3 hub to work by plugging it into
  689. a USB2 hub. When choosing a hub, USB2 hubs are preferable whenever possible
  690. due to better support all round.
  691. Q: Can I mine on servers from different networks (eg xxxcoin and bitcoin) at
  692. the same time?
  693. A: No, cgminer keeps a database of the block it's working on to ensure it does
  694. not work on stale blocks, and having different blocks from two networks would
  695. make it invalidate the work from each other.
  696. Q: Can I configure cgminer to mine with different login credentials or pools
  697. for each separate device?
  698. A: No.
  699. Q: Can I put multiple pools in the config file?
  700. A: Yes, check the example.conf file. Alternatively, set up everything either on
  701. the command line or via the menu after startup and choose settings->write
  702. config file and the file will be loaded one each startup.
  703. Q: The build fails with gcc is unable to build a binary.
  704. A: Remove the "-march=native" component of your CFLAGS as your version of gcc
  705. does not support it. Also -O2 is capital o 2, not zero 2.
  706. Q: Can you implement feature X?
  707. A: I can, but time is limited, and people who donate are more likely to get
  708. their feature requests implemented.
  709. Q: Work keeps going to my backup pool even though my primary pool hasn't
  710. failed?
  711. A: Cgminer checks for conditions where the primary pool is lagging and will
  712. pass some work to the backup servers under those conditions. The reason for
  713. doing this is to try its absolute best to keep the devices working on something
  714. useful and not risk idle periods. You can disable this behaviour with the
  715. option --failover-only.
  716. Q: Is this a virus?
  717. A: Cgminer is being packaged with other trojan scripts and some antivirus
  718. software is falsely accusing cgminer.exe as being the actual virus, rather
  719. than whatever it is being packaged with. If you installed cgminer yourself,
  720. then you do not have a virus on your computer. Complain to your antivirus
  721. software company. They seem to be flagging even source code now from cgminer
  722. as viruses, even though text source files can't do anything by themself.
  723. Q: Can you modify the display to include more of one thing in the output and
  724. less of another, or can you change the quiet mode or can you add yet another
  725. output mode?
  726. A: Everyone will always have their own view of what's important to monitor.
  727. The defaults are very sane and I have very little interest in changing this
  728. any further. There is far more detail in the API output than can be reasonably
  729. displayed on the small console window, and using an external interface such
  730. as miner.php is much more useful for setups with many devices.
  731. Q: What are the best parameters to pass for X pool/hardware/device.
  732. A: Virtually always, the DEFAULT parameters give the best results. Most user
  733. defined settings lead to worse performance.
  734. Q: What happened to CPU and GPU mining?
  735. A: Their efficiency makes them irrelevant in the bitcoin mining world today
  736. and the author has no interest in supporting alternative coins that are better
  737. mined by these devices.
  738. Q: GUI version?
  739. A: No. The RPC interface makes it possible for someone else to write one
  740. though.
  741. Q: I'm having an issue. What debugging information should I provide?
  742. A: Start cgminer with your regular commands and add -D -T --verbose and provide
  743. the full startup output and a summary of your hardware and operating system.
  744. Q: Why don't you provide win64 builds?
  745. A: Win32 builds work everywhere and there is precisely zero advantage to a
  746. 64 bit build on windows.
  747. Q: Is it faster to mine on windows or linux?
  748. A: It makes no difference in terms of performance. It comes down to choice of
  749. operating system for their various features and your comfort level. However
  750. linux is the primary development platform and is virtually guaranteed to be
  751. more stable.
  752. Q: My network gets slower and slower and then dies for a minute?
  753. A; Try the --net-delay option if you are on a getwork or GBT server. This does
  754. nothing with stratum mining.
  755. Q: How do I tune for p2pool?
  756. A: It is also recommended to use --failover-only since the work is effectively
  757. like a different block chain, and not enabling --no-submit-stale. If mining with
  758. a BFL (fpga) minirig, it is worth adding the --bfl-range option.
  759. Q: I run PHP on windows to access the API with the example miner.php. Why does
  760. it fail when php is installed properly but I only get errors about Sockets not
  761. working in the logs?
  762. A: http://us.php.net/manual/en/sockets.installation.php
  763. Q: What is a PGA?
  764. A: Cgminer supports 3 FPGAs: BitForce, Icarus and ModMiner.
  765. They are Field-Programmable Gate Arrays that have been programmed to do Bitcoin
  766. mining. Since the acronym needs to be only 3 characters, the "Field-" part has
  767. been skipped.
  768. Q: What is an ASIC?
  769. A: They are Application Specify Integrated Circuit devices and provide the
  770. highest performance per unit power due to being dedicated to only one purpose.
  771. They are the only meaningful way to mine bitcoin today.
  772. Q: What is stratum and how do I use it?
  773. A: Stratum is a protocol designed for pooled mining in such a way as to
  774. minimise the amount of network communications, yet scale to hardware of any
  775. speed. With versions of cgminer 2.8.0+, if a pool has stratum support, cgminer
  776. will automatically detect it and switch to the support as advertised if it can.
  777. If you input the stratum port directly into your configuration, or use the
  778. special prefix "stratum+tcp://" instead of "http://", cgminer will ONLY try to
  779. use stratum protocol mining. The advantages of stratum to the miner are no
  780. delays in getting more work for the miner, less rejects across block changes,
  781. and far less network communications for the same amount of mining hashrate. If
  782. you do NOT wish cgminer to automatically switch to stratum protocol even if it
  783. is detected, add the --fix-protocol option.
  784. Q: Why don't the statistics add up: Accepted, Rejected, Stale, Hardware Errors,
  785. Diff1 Work, etc. when mining greater than 1 difficulty shares?
  786. A: As an example, if you look at 'Difficulty Accepted' in the RPC API, the number
  787. of difficulty shares accepted does not usually exactly equal the amount of work
  788. done to find them. If you are mining at 8 difficulty, then you would expect on
  789. average to find one 8 difficulty share, per 8 single difficulty shares found.
  790. However, the number is actually random and converges over time, it is an average,
  791. not an exact value, thus you may find more or less than the expected average.
  792. Q: My keyboard input momentarily pauses or repeats keys every so often on
  793. windows while mining?
  794. A: The USB implementation on windows can be very flaky on some hardware and
  795. every time cgminer looks for new hardware to hotplug it it can cause these
  796. sorts of problems. You can disable hotplug with:
  797. --hotplug 0
  798. Q: What should my Work Utility (WU) be?
  799. A: Work utility is the product of hashrate * luck and only stabilises over a
  800. very long period of time. Assuming all your work is valid work, bitcoin mining
  801. should produce a work utility of approximately 1 per 71.6MH. This means at
  802. 5GH you should have a WU of 5000 / 71.6 or ~ 69. You cannot make your machine
  803. do "better WU" than this - it is luck related. However you can make it much
  804. worse if your machine produces a lot of hardware errors producing invalid work.
  805. Q: What should I build in for a generic distribution binary?
  806. A: There are a number of drivers that expect to be used on dedicated standalone
  807. hardware. That said, the drivers that are designed to work generically with
  808. USB on any hardware are the following:
  809. --enable-avalon
  810. --enable-avalon2
  811. --enable-avalon4
  812. --enable-bflsc
  813. --enable-bitfury
  814. --enable-blockerupter
  815. --enable-cointerra
  816. --enable-drillbit
  817. --enable-hashfast
  818. --enable-hashratio
  819. --enable-icarus
  820. --enable-klondike
  821. ---
  822. This code is provided entirely free of charge by the programmer in his spare
  823. time so donations would be greatly appreciated. Please consider donating to the
  824. address below.
  825. Con Kolivas <kernel@kolivas.org>
  826. 15qSxP1SQcUX3o4nhkfdbgyoWEFMomJ4rZ