README 36 KB

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