README 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  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. DOWNLOADS:
  8. http://ck.kolivas.org/apps/cgminer
  9. GIT TREE:
  10. https://github.com/ckolivas/cgminer
  11. Support thread:
  12. http://bitcointalk.org/index.php?topic=28402.0
  13. IRC Channel:
  14. irc://irc.freenode.net/cgminer
  15. License: GPLv3. See COPYING for details.
  16. SEE ALSO API-README, ASIC-README and FGPA-README FOR MORE INFORMATION ON EACH.
  17. ---
  18. EXECUTIVE SUMMARY ON USAGE:
  19. After saving configuration from the menu, you do not need to give cgminer any
  20. arguments and it will load your configuration.
  21. Any configuration file may also contain a single
  22. "include" : "filename"
  23. to recursively include another configuration file.
  24. Writing the configuration will save all settings from all files in the output.
  25. Single pool:
  26. cgminer -o http://pool:port -u username -p password
  27. Multiple pools:
  28. cgminer -o http://pool1:port -u pool1username -p pool1password -o http://pool2:port -u pool2usernmae -p pool2password
  29. Single pool with a standard http proxy, regular desktop:
  30. cgminer -o "http:proxy:port|http://pool:port" -u username -p password
  31. Single pool with a socks5 proxy, regular desktop:
  32. cgminer -o "socks5:proxy:port|http://pool:port" -u username -p password
  33. Single pool with stratum protocol support:
  34. cgminer -o stratum+tcp://pool:port -u username -p password
  35. The list of proxy types are:
  36. http: standard http 1.1 proxy
  37. http0: http 1.0 proxy
  38. socks4: socks4 proxy
  39. socks5: socks5 proxy
  40. socks4a: socks4a proxy
  41. socks5h: socks5 proxy using a hostname
  42. If you compile cgminer with a version of CURL before 7.19.4 then some of the above will
  43. not be available. All are available since CURL version 7.19.4
  44. If you specify the --socks-proxy option to cgminer, it will only be applied to all pools
  45. that don't specify their own proxy setting like above
  46. ---
  47. BUILDING CGMINER FOR YOURSELF
  48. DEPENDENCIES:
  49. Mandatory:
  50. curl dev library http://curl.haxx.se/libcurl/
  51. (libcurl4-openssl-dev)
  52. pkg-config http://www.freedesktop.org/wiki/Software/pkg-config
  53. libtool http://www.gnu.org/software/libtool/
  54. Optional:
  55. curses dev library
  56. (libncurses5-dev or libpdcurses on WIN32 for text user interface)
  57. libudev dev library (libudev-dev)
  58. (This is only required for USB device support and is linux only)
  59. If building from git:
  60. autoconf
  61. automake
  62. If building on Red Hat:
  63. sudo yum install autoconf automake autoreconf libtool openssl-compat-bitcoin-devel.x86_64 \
  64. curl libcurl libcurl-devel openssh
  65. CGMiner specific configuration options:
  66. --enable-avalon Compile support for Avalon (default disabled)
  67. --enable-bflsc Compile support for BFL ASICs (default disabled)
  68. --enable-bitforce Compile support for BitForce FPGAs (default
  69. disabled)
  70. --enable-bitfury Compile support for BitFury ASICs (default disabled)
  71. --enable-hashfast Compile support for Hashfast (default disabled)
  72. --enable-icarus Compile support for Icarus (default disabled)
  73. --enable-knc Compile support for KnC miners (default disabled)
  74. --enable-bab Compile support for BlackArrow Bitfury (default disabled)
  75. --enable-klondike Compile support for Klondike (default disabled)
  76. --enable-modminer Compile support for ModMiner FPGAs(default disabled)
  77. --without-curses Compile support for curses TUI (default enabled)
  78. --with-system-libusb Compile against dynamic system libusb (default use
  79. included static libusb)
  80. Basic *nix build instructions:
  81. To actually build:
  82. ./autogen.sh # only needed if building from git repo
  83. CFLAGS="-O2 -Wall -march=native" ./configure <options>
  84. make
  85. No installation is necessary. You may run cgminer from the build
  86. directory directly, but you may do make install if you wish to install
  87. cgminer to a system location or location you specified.
  88. Native WIN32 build instructions: see windows-build.txt
  89. ---
  90. Usage instructions: Run "cgminer --help" to see options:
  91. Usage: . [-atDdGCgIKklmpPQqrRsTouvwOchnV]
  92. Options for both config file and command line:
  93. --api-allow Allow API access (if enabled) only to the given list of [W:]IP[/Prefix] address[/subnets]
  94. This overrides --api-network and you must specify 127.0.0.1 if it is required
  95. W: in front of the IP address gives that address privileged access to all api commands
  96. --api-description Description placed in the API status header (default: cgminer version)
  97. --api-groups API one letter groups G:cmd:cmd[,P:cmd:*...]
  98. See API-README for usage
  99. --api-listen Listen for API requests (default: disabled)
  100. By default any command that does not just display data returns access denied
  101. See --api-allow to overcome this
  102. --api-network Allow API (if enabled) to listen on/for any address (default: only 127.0.0.1)
  103. --api-mcast Enable API Multicast listener, (default: disabled)
  104. The listener will only run if the API is also enabled
  105. --api-mcast-addr <arg> API Multicast listen address, (default: 224.0.0.75)
  106. --api-mcast-code <arg> Code expected in the API Multicast message, don't use '-' (default: "FTW")
  107. --api-mcast-port <arg> API Multicast listen port, (default: 4028)
  108. --api-port Port number of miner API (default: 4028)
  109. --balance Change multipool strategy from failover to even share balance
  110. --benchmark Run cgminer in benchmark mode - produces no shares
  111. --compact Use compact display without per device statistics
  112. --debug|-D Enable debug output
  113. --device|-d <arg> Select device to use, one value, range and/or comma separated (e.g. 0-2,4) default: all
  114. --disable-rejecting Automatically disable pools that continually reject shares
  115. --expiry|-E <arg> Upper bound on how many seconds after getting work we consider a share from it stale (default: 120)
  116. --failover-only Don't leak work to backup pools when primary pool is lagging
  117. --fix-protocol Do not redirect to a different getwork protocol (eg. stratum)
  118. --hotplug <arg> Set hotplug check time to <arg> seconds (0=never default: 5) - only with libusb
  119. --kernel-path|-K <arg> Specify a path to where bitstream files are (default: "/usr/local/bin")
  120. --load-balance Change multipool strategy from failover to quota based balance
  121. --log|-l <arg> Interval in seconds between log output (default: 5)
  122. --lowmem Minimise caching of shares for low memory applications
  123. --monitor|-m <arg> Use custom pipe cmd for output messages
  124. --net-delay Impose small delays in networking to not overload slow routers
  125. --no-submit-stale Don't submit shares if they are detected as stale
  126. --pass|-p <arg> Password for bitcoin JSON-RPC server
  127. --per-device-stats Force verbose mode and output per-device statistics
  128. --protocol-dump|-P Verbose dump of protocol-level activities
  129. --queue|-Q <arg> Minimum number of work items to have queued (0 - 10) (default: 1)
  130. --quiet|-q Disable logging output, display status and errors
  131. --real-quiet Disable all output
  132. --remove-disabled Remove disabled devices entirely, as if they didn't exist
  133. --rotate <arg> Change multipool strategy from failover to regularly rotate at N minutes (default: 0)
  134. --round-robin Change multipool strategy from failover to round robin on failure
  135. --scan-time|-s <arg> Upper bound on time spent scanning current work, in seconds (default: 60)
  136. --sched-start <arg> Set a time of day in HH:MM to start mining (a once off without a stop time)
  137. --sched-stop <arg> Set a time of day in HH:MM to stop mining (will quit without a start time)
  138. --sharelog <arg> Append share log to file
  139. --shares <arg> Quit after mining N shares (default: unlimited)
  140. --socks-proxy <arg> Set socks4 proxy (host:port) for all pools without a proxy specified
  141. --syslog Use system log for output messages (default: standard error)
  142. --temp-cutoff <arg> Temperature where a device will be automatically disabled, one value or comma separated list (default: 95)
  143. --text-only|-T Disable ncurses formatted screen output
  144. --url|-o <arg> URL for bitcoin JSON-RPC server
  145. --user|-u <arg> Username for bitcoin JSON-RPC server
  146. --verbose Log verbose output to stderr as well as status output
  147. --userpass|-O <arg> Username:Password pair for bitcoin JSON-RPC server
  148. Options for command line only:
  149. --config|-c <arg> Load a JSON-format configuration file
  150. See example.conf for an example configuration.
  151. --help|-h Print this message
  152. --version|-V Display version and exit
  153. USB device (ASIC and FPGA) options:
  154. --icarus-options <arg> Set specific FPGA board configurations - one set of values for all or comma separated
  155. --icarus-timing <arg> Set how the Icarus timing is calculated - one setting/value for all or comma separated
  156. --usb <arg> USB device selection (See below)
  157. --usb-dump (See FPGA-README)
  158. See FGPA-README or ASIC-README for more information regarding these.
  159. ASIC only options:
  160. --avalon-auto Adjust avalon overclock frequency dynamically for best hashrate
  161. --avalon-fan <arg> Set fanspeed percentage for avalon, single value or range (default: 20-100)
  162. --avalon-freq <arg> Set frequency range for avalon-auto, single value or range
  163. --avalon-cutoff <arg> Set avalon overheat cut off temperature (default: 60)
  164. --avalon-options <arg> Set avalon options baud:miners:asic:timeout:freq
  165. --avalon-temp <arg> Set avalon target temperature (default: 50)
  166. --bflsc-overheat <arg> Set overheat temperature where BFLSC devices throttle, 0 to disable (default: 90)
  167. --bitburner-fury-options <arg> Override avalon-options for BitBurner Fury boards baud:miners:asic:timeout:freq
  168. --bitburner-fury-voltage <arg> Set BitBurner Fury core voltage, in millivolts
  169. --bitburner-voltage <arg> Set BitBurner (Avalon) core voltage, in millivolts
  170. --klondike-options <arg> Set klondike options clock:temptarget
  171. See ASIC-README for more information regarding these.
  172. FPGA only options:
  173. --bfl-range Use nonce range on bitforce devices if supported
  174. See FGPA-README for more information regarding this.
  175. Cgminer should automatically find all of your Avalon ASIC, BFL ASIC, BitForce
  176. FPGAs, Icarus bitstream FPGAs, Klondike ASIC, ASICMINER usb block erupters,
  177. KnC ASICs, BaB ASICs, Hashfast ASICs and ModMiner FPGAs.
  178. ---
  179. SETTING UP USB DEVICES
  180. WINDOWS:
  181. On windows, the direct USB support requires the installation of a WinUSB
  182. driver (NOT the ftdi_sio driver), and attach it to your devices.
  183. The easiest way to do this is to use the zadig utility which will install the
  184. drivers for you and then once you plug in your device you can choose the
  185. "list all devices" from the "option" menu and you should be able to see the
  186. device as something like: "BitFORCE SHA256 SC". Choose the install or replace
  187. driver option and select WinUSB. You can either google for zadig or download
  188. it from the cgminer directory in the DOWNLOADS link above.
  189. LINUX:
  190. On linux, the direct USB support requires no drivers at all. However due to
  191. permissions issues, you may not be able to mine directly on the devices as a
  192. regular user without giving the user access to the device or by mining as
  193. root (administrator). In order to give your regular user access, you can make
  194. him a member of the plugdev group with the following commands:
  195. sudo usermod -G plugdev -a `whoami`
  196. If your distribution does not have the plugdev group you can create it with:
  197. sudo groupadd plugdev
  198. In order for the BFL devices to instantly be owned by the plugdev group and
  199. accessible by anyone from the plugdev group you can copy the file
  200. "01-cgminer.rules" from the cgminer archive into the /etc/udev/rules.d
  201. directory with the following command:
  202. sudo cp 01-cgminer.rules /etc/udev/rules.d/
  203. After this you can either manually restart udev and re-login, or more easily
  204. just reboot.
  205. Advanced USB options:
  206. The --usb option can restrict how many Avalon, BFL ASIC, BitForce FPGAs,
  207. Klondike ASIC, ModMiner FPGAs or Icarus bitstream FPGAs it finds:
  208. --usb 1:2,1:3,1:4,1:*
  209. or
  210. --usb BAS:1,BFL:1,MMQ:0,ICA:0,KLN:0
  211. or
  212. --usb :10
  213. You can only use one of the above 3
  214. The first version
  215. --usb 1:2,1:3,1:4,1:*
  216. allows you to select which devices to mine on with a list of USB
  217. bus_number:device_address
  218. All other USB devices will be ignored
  219. Hotplug will also only look at the devices matching the list specified and
  220. find nothing new if they are all in use
  221. You can specify just the USB bus_number to find all devices like 1:*
  222. which means any devices on USB bus_number 1
  223. This is useful if you unplug a device then plug it back in the same port,
  224. it usually reappears with the same bus_number but a different device_address
  225. You can see the list of all USB devices on linux with 'sudo lsusb'
  226. Cgminer will list the recognised USB devices with the '-n' option or the
  227. '--usb-dump 0' option
  228. The '--usb-dump N' option with a value of N greater than 0 will dump a lot
  229. of details about each recognised USB device
  230. If you wish to see all USB devices, include the --usb-list-all option
  231. The second version
  232. --usb BAS:1,BFL:1,MMQ:0,ICA:0,KLN:0
  233. allows you to specify how many devices to choose based on each device
  234. driver cgminer has - there are currently 5 USB drivers: BAS, BFL, MMQ.
  235. ICA & KLN
  236. N.B. you can only specify which device driver to limit, not the type of
  237. each device, e.g. with BAS:n you can limit how many BFL ASIC devices will
  238. be checked, but you cannot limit the number of each type of BFL ASIC
  239. Also note that the MMQ count is the number of MMQ backplanes you have
  240. not the number of MMQ FPGAs
  241. The third version
  242. --usb :10
  243. means only use a maximum of 10 devices of any supported USB devices
  244. Once cgminer has 10 devices it will not configure any more and hotplug will
  245. not scan for any more
  246. If one of the 10 devices stops working, hotplug - if enabled, as is default
  247. - will scan normally again until it has 10 devices
  248. --usb :0 will disable all USB I/O other than to initialise libusb
  249. NOTE: The --device option will limit which devices are in use based on their
  250. numbering order of the total devices, so if you hotplug USB devices regularly,
  251. it will not reliably be the same devices.
  252. ---
  253. WHILE RUNNING:
  254. The following options are available while running with a single keypress:
  255. [P]ool management [S]ettings [D]isplay options [Q]uit
  256. P gives you:
  257. Current pool management strategy: Failover
  258. [F]ailover only disabled
  259. [A]dd pool [R]emove pool [D]isable pool [E]nable pool
  260. [C]hange management strategy [S]witch pool [I]nformation
  261. S gives you:
  262. [Q]ueue: 1
  263. [S]cantime: 60
  264. [E]xpiry: 120
  265. [W]rite config file
  266. [C]gminer restart
  267. D gives you:
  268. [N]ormal [C]lear [S]ilent mode (disable all output)
  269. [D]ebug:off
  270. [P]er-device:off
  271. [Q]uiet:off
  272. [V]erbose:off
  273. [R]PC debug:off
  274. [W]orkTime details:off
  275. co[M]pact: off
  276. [L]og interval:5
  277. Q quits the application.
  278. The running log shows output like this:
  279. [2013-11-09 11:04:41] Accepted 01b3bde7 Diff 150/128 AVA 1 pool 0
  280. [2013-11-09 11:04:49] Accepted 015df995 Diff 187/128 AVA 1 pool 0
  281. [2013-11-09 11:04:50] Accepted 01163b68 Diff 236/128 AVA 1 pool 0
  282. [2013-11-09 11:04:53] Accepted 9f745840 Diff 411/128 BAS 1 pool 0
  283. The 8 byte hex value are the 1st nonzero bytes of the share being submitted to
  284. the pool. The 2 diff values are the actual difficulty target that share reached
  285. followed by the difficulty target the pool is currently asking for.
  286. ---
  287. Also many issues and FAQs are covered in the forum thread
  288. dedicated to this program,
  289. http://forum.bitcoin.org/index.php?topic=28402.0
  290. The output line shows the following:
  291. (5s):1713.6 (avg):1707.8 Mh/s | A:729 R:8 HW:0 WU:22.53/m
  292. Each column is as follows:
  293. 5s: A 5 second exponentially decaying average hash rate
  294. avg: An all time average hash rate
  295. A: The total difficulty of Accepted shares
  296. R: The total difficulty of Rejected shares
  297. HW: The number of HardWare errors
  298. WU: The Work Utility defined as the number of diff1 shares work / minute
  299. (accepted or rejected).
  300. BAS 1: max 67C 3.27V | 62.29G/62.19Gh/s | A:140813 R:256 HW:2860 WU: 852.0/m
  301. Each column is as follows:
  302. Temperature (if supported)
  303. Fanspeed (if supported)
  304. A 5 second exponentially decaying average hash rate
  305. An all time average hash rate
  306. The total difficulty of accepted shares
  307. The total difficulty of rejected shares
  308. The number of hardware erorrs
  309. The work utility defined as the number of diff1 shares work / minute
  310. The cgminer status line shows:
  311. ST: 1 SS: 0 NB: 1 LW: 8 GF: 1 RF: 1
  312. ST is STaged work items (ready to use).
  313. SS is Stale Shares discarded (detected and not submitted so don't count as rejects)
  314. NB is New Blocks detected on the network
  315. LW is Locally generated Work items
  316. GF is Getwork Fail Occasions (server slow to provide work)
  317. RF is Remote Fail occasions (server slow to accept work)
  318. The block display shows:
  319. Block: 0074c5e482e34a506d2a051a... Started: [17:17:22] Best share: 2.71K
  320. This shows a short stretch of the current block, when the new block started,
  321. and the all time best difficulty share you've found since starting cgminer
  322. this time.
  323. ---
  324. MULTIPOOL
  325. FAILOVER STRATEGIES WITH MULTIPOOL:
  326. A number of different strategies for dealing with multipool setups are
  327. available. Each has their advantages and disadvantages so multiple strategies
  328. are available by user choice, as per the following list:
  329. FAILOVER:
  330. The default strategy is failover. This means that if you input a number of
  331. pools, it will try to use them as a priority list, moving away from the 1st
  332. to the 2nd, 2nd to 3rd and so on. If any of the earlier pools recover, it will
  333. move back to the higher priority ones.
  334. ROUND ROBIN:
  335. This strategy only moves from one pool to the next when the current one falls
  336. idle and makes no attempt to move otherwise.
  337. ROTATE:
  338. This strategy moves at user-defined intervals from one active pool to the next,
  339. skipping pools that are idle.
  340. LOAD BALANCE:
  341. This strategy sends work to all the pools on a quota basis. By default, all
  342. pools are allocated equal quotas unless specified with --quota. This
  343. apportioning of work is based on work handed out, not shares returned so is
  344. independent of difficulty targets or rejected shares. While a pool is disabled
  345. or dead, its quota is dropped until it is re-enabled. Quotas are forward
  346. looking, so if the quota is changed on the fly, it only affects future work.
  347. If all pools are set to zero quota or all pools with quota are dead, it will
  348. fall back to a failover mode. See quota below for more information.
  349. The failover-only flag has special meaning in combination with load-balance
  350. mode and it will distribute quota back to priority pool 0 from any pools that
  351. are unable to provide work for any reason so as to maintain quota ratios
  352. between the rest of the pools.
  353. BALANCE:
  354. This strategy monitors the amount of difficulty 1 shares solved for each pool
  355. and uses it to try to end up doing the same amount of work for all pools.
  356. ---
  357. QUOTAS
  358. The load-balance multipool strategy works off a quota based scheduler. The
  359. quotas handed out by default are equal, but the user is allowed to specify any
  360. arbitrary ratio of quotas. For example, if all the quota values add up to 100,
  361. each quota value will be a percentage, but if 2 pools are specified and pool0
  362. is given a quota of 1 and pool1 is given a quota of 9, pool0 will get 10% of
  363. the work and pool1 will get 90%. Quotas can be changed on the fly by the API,
  364. and do not act retrospectively. Setting a quota to zero will effectively
  365. disable that pool unless all other pools are disabled or dead. In that
  366. scenario, load-balance falls back to regular failover priority-based strategy.
  367. While a pool is dead, it loses its quota and no attempt is made to catch up
  368. when it comes back to life.
  369. To specify quotas on the command line, pools should be specified with a
  370. semicolon separated --quota(or -U) entry instead of --url. Pools specified with
  371. --url are given a nominal quota value of 1 and entries can be mixed.
  372. For example:
  373. --url poola:porta -u usernamea -p passa --quota "2;poolb:portb" -u usernameb -p passb
  374. Will give poola 1/3 of the work and poolb 2/3 of the work.
  375. Writing configuration files with quotas is likewise supported. To use the above
  376. quotas in a configuration file they would be specified thus:
  377. "pools" : [
  378. {
  379. "url" : "poola:porta",
  380. "user" : "usernamea",
  381. "pass" : "passa"
  382. },
  383. {
  384. "quota" : "2;poolb:portb",
  385. "user" : "usernameb",
  386. "pass" : "passb"
  387. }
  388. ]
  389. ---
  390. LOGGING
  391. cgminer will log to stderr if it detects stderr is being redirected to a file.
  392. To enable logging simply add 2>logfile.txt to your command line and logfile.txt
  393. will contain the logged output at the log level you specify (normal, verbose,
  394. debug etc.)
  395. In other words if you would normally use:
  396. ./cgminer -o xxx -u yyy -p zzz
  397. if you use
  398. ./cgminer -o xxx -u yyy -p zzz 2>logfile.txt
  399. it will log to a file called logfile.txt and otherwise work the same.
  400. There is also the -m option on linux which will spawn a command of your choice
  401. and pipe the output directly to that command.
  402. The WorkTime details 'debug' option adds details on the end of each line
  403. displayed for Accepted or Rejected work done. An example would be:
  404. <-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
  405. The first 2 hex codes are the previous block hash, the rest are reported in
  406. seconds unless stated otherwise:
  407. The previous hash is followed by the getwork mode used M:X where X is one of
  408. P:Pool, T:Test Pool, L:LP or B:Benchmark,
  409. then D:d.ddd is the difficulty required to get a share from the work,
  410. then G:hh:mm:ss:n.nnn, which is when the getwork or LP was sent to the pool and
  411. the n.nnn is how long it took to reply,
  412. followed by 'O' on it's own if it is an original getwork, or 'C:n.nnn' if it was
  413. a clone with n.nnn stating how long after the work was recieved that it was cloned,
  414. (m.mmm) is how long from when the original work was received until work started,
  415. W:n.nnn is how long the work took to process until it was ready to submit,
  416. (m.mmm) is how long from ready to submit to actually doing the submit, this is
  417. usually 0.000 unless there was a problem with submitting the work,
  418. S:n.nnn is how long it took to submit the completed work and await the reply,
  419. R:hh:mm:ss is the actual time the work submit reply was received
  420. If you start cgminer with the --sharelog option, you can get detailed
  421. information for each share found. The argument to the option may be "-" for
  422. standard output (not advisable with the ncurses UI), any valid positive number
  423. for that file descriptor, or a filename.
  424. To log share data to a file named "share.log", you can use either:
  425. ./cgminer --sharelog 50 -o xxx -u yyy -p zzz 50>share.log
  426. ./cgminer --sharelog share.log -o xxx -u yyy -p zzz
  427. For every share found, data will be logged in a CSV (Comma Separated Value)
  428. format:
  429. timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  430. For example (this is wrapped, but it's all on one line for real):
  431. 1335313090,reject,
  432. ffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000,
  433. http://localhost:8337,GPU0,0,
  434. 6f983c918f3299b58febf95ec4d0c7094ed634bc13754553ec34fc3800000000,
  435. 00000001a0980aff4ce4a96d53f4b89a2d5f0e765c978640fe24372a000001c5
  436. 000000004a4366808f81d44f26df3d69d7dc4b3473385930462d9ab707b50498
  437. f681634a4f1f63d01a0cd43fb338000000000080000000000000000000000000
  438. 0000000000000000000000000000000000000000000000000000000080020000
  439. ---
  440. RPC API
  441. For RPC API details see the API-README file
  442. ---
  443. FAQ
  444. Q: Can I mine on servers from different networks (eg xxxcoin and bitcoin) at
  445. the same time?
  446. A: No, cgminer keeps a database of the block it's working on to ensure it does
  447. not work on stale blocks, and having different blocks from two networks would
  448. make it invalidate the work from each other.
  449. Q: Can I configure cgminer to mine with different login credentials or pools
  450. for each separate device?
  451. A: No.
  452. Q: Can I put multiple pools in the config file?
  453. A: Yes, check the example.conf file. Alternatively, set up everything either on
  454. the command line or via the menu after startup and choose settings->write
  455. config file and the file will be loaded one each startup.
  456. Q: The build fails with gcc is unable to build a binary.
  457. A: Remove the "-march=native" component of your CFLAGS as your version of gcc
  458. does not support it.
  459. Q: Can you implement feature X?
  460. A: I can, but time is limited, and people who donate are more likely to get
  461. their feature requests implemented.
  462. Q: Work keeps going to my backup pool even though my primary pool hasn't
  463. failed?
  464. A: Cgminer checks for conditions where the primary pool is lagging and will
  465. pass some work to the backup servers under those conditions. The reason for
  466. doing this is to try its absolute best to keep the GPUs working on something
  467. useful and not risk idle periods. You can disable this behaviour with the
  468. option --failover-only.
  469. Q: Is this a virus?
  470. A: Cgminer is being packaged with other trojan scripts and some antivirus
  471. software is falsely accusing cgminer.exe as being the actual virus, rather
  472. than whatever it is being packaged with. If you installed cgminer yourself,
  473. then you do not have a virus on your computer. Complain to your antivirus
  474. software company. They seem to be flagging even source code now from cgminer
  475. as viruses, even though text source files can't do anything by themself.
  476. Q: Can you modify the display to include more of one thing in the output and
  477. less of another, or can you change the quiet mode or can you add yet another
  478. output mode?
  479. A: Everyone will always have their own view of what's important to monitor.
  480. The defaults are very sane and I have very little interest in changing this
  481. any further.
  482. Q: What are the best parameters to pass for X pool/hardware/device.
  483. A: Virtually always, the DEFAULT parameters give the best results. Most user
  484. defined settings lead to worse performance. The ONLY thing most users should
  485. need to set is the Intensity for GPUs.
  486. Q: What happened to CPU and GPU mining?
  487. A: Their efficiency makes them irrelevant in the bitcoin mining world today
  488. and the author has no interest in supporting alternative coins that are better
  489. mined by these devices.
  490. Q: GUI version?
  491. A: No. The RPC interface makes it possible for someone else to write one
  492. though.
  493. Q: I'm having an issue. What debugging information should I provide?
  494. A: Start cgminer with your regular commands and add -D -T --verbose and provide
  495. the full startup output and a summary of your hardware and operating system.
  496. Q: Why don't you provide win64 builds?
  497. A: Win32 builds work everywhere and there is precisely zero advantage to a
  498. 64 bit build on windows.
  499. Q: Is it faster to mine on windows or linux?
  500. A: It makes no difference. It comes down to choice of operating system for
  501. their various features. Linux offers much better long term stability and
  502. remote monitoring and security, while windows offers you overclocking tools
  503. that can achieve much more than cgminer can do on linux.
  504. Q: My network gets slower and slower and then dies for a minute?
  505. A; Try the --net-delay option.
  506. Q: How do I tune for p2pool?
  507. A: It is also recommended to use --failover-only since the work is effectively
  508. like a different block chain, and not enabling --no-submit-stale. If mining with
  509. a BFL (fpga) minirig, it is worth adding the --bfl-range option.
  510. Q: I run PHP on windows to access the API with the example miner.php. Why does
  511. it fail when php is installed properly but I only get errors about Sockets not
  512. working in the logs?
  513. A: http://us.php.net/manual/en/sockets.installation.php
  514. Q: What is a PGA?
  515. A: At the moment, cgminer supports 3 FPGAs: BitForce, Icarus and ModMiner.
  516. They are Field-Programmable Gate Arrays that have been programmed to do Bitcoin
  517. mining. Since the acronym needs to be only 3 characters, the "Field-" part has
  518. been skipped.
  519. Q: What is an ASIC?
  520. A: They are Application Specify Integrated Circuit devices and provide the
  521. highest performance per unit power due to being dedicated to only one purpose.
  522. Q: Can I mine scrypt with FPGAs or ASICs?
  523. A: No.
  524. Q: What is stratum and how do I use it?
  525. A: Stratum is a protocol designed for pooled mining in such a way as to
  526. minimise the amount of network communications, yet scale to hardware of any
  527. speed. With versions of cgminer 2.8.0+, if a pool has stratum support, cgminer
  528. will automatically detect it and switch to the support as advertised if it can.
  529. If you input the stratum port directly into your configuration, or use the
  530. special prefix "stratum+tcp://" instead of "http://", cgminer will ONLY try to
  531. use stratum protocol mining. The advantages of stratum to the miner are no
  532. delays in getting more work for the miner, less rejects across block changes,
  533. and far less network communications for the same amount of mining hashrate. If
  534. you do NOT wish cgminer to automatically switch to stratum protocol even if it
  535. is detected, add the --fix-protocol option.
  536. Q: Why don't the statistics add up: Accepted, Rejected, Stale, Hardware Errors,
  537. Diff1 Work, etc. when mining greater than 1 difficulty shares?
  538. A: As an example, if you look at 'Difficulty Accepted' in the RPC API, the number
  539. of difficulty shares accepted does not usually exactly equal the amount of work
  540. done to find them. If you are mining at 8 difficulty, then you would expect on
  541. average to find one 8 difficulty share, per 8 single difficulty shares found.
  542. However, the number is actually random and converges over time, it is an average,
  543. not an exact value, thus you may find more or less than the expected average.
  544. Q: My keyboard input momentarily pauses or repeats keys every so often on
  545. windows while mining?
  546. A: The USB implementation on windows can be very flaky on some hardware and
  547. every time cgminer looks for new hardware to hotplug it it can cause these
  548. sorts of problems. You can disable hotplug with:
  549. --hotplug 0
  550. Q: What should my Work Utility (WU) be?
  551. A: Work utility is the product of hashrate * luck and only stabilises over a
  552. very long period of time. Assuming all your work is valid work, bitcoin mining
  553. should produce a work utility of approximately 1 per 71.6MH. This means at
  554. 5GH you should have a WU of 5000 / 71.6 or ~ 69. You cannot make your machine
  555. do "better WU" than this - it is luck related. However you can make it much
  556. worse if your machine produces a lot of hardware errors producing invalid work.
  557. ---
  558. This code is provided entirely free of charge by the programmer in his spare
  559. time so donations would be greatly appreciated. Please consider donating to the
  560. address below.
  561. Con Kolivas <kernel@kolivas.org>
  562. 15qSxP1SQcUX3o4nhkfdbgyoWEFMomJ4rZ