README 31 KB

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