README 31 KB

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