README 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750
  1. BFGMiner:
  2. St. Barbara's Faithfully Glorified Mining Initiative Naturally Exceeding Rivals
  3. or Basically a Freaking Good Miner
  4. This is a multi-threaded multi-pool ASIC, FPGA, GPU and CPU miner with dynamic
  5. clocking, monitoring, and fanspeed support for bitcoin. Do not use on multiple
  6. block chains at the same time!
  7. This code is provided entirely free of charge by the programmer in his spare
  8. time so donations would be greatly appreciated. Please consider donating to the
  9. address below.
  10. Luke-Jr <luke-jr+bfgminer@utopios.org>
  11. 1QATWksNFGeUJCWBrN4g6hGM178Lovm7Wh
  12. DOWNLOADS:
  13. http://luke.dashjr.org/programs/bitcoin/files/bfgminer
  14. GIT TREE:
  15. https://github.com/luke-jr/bfgminer
  16. Bug reports:
  17. https://github.com/luke-jr/bfgminer/issues
  18. IRC Channel:
  19. irc://irc.freenode.net/eligius
  20. License: GPLv3. See COPYING for details.
  21. SEE ALSO README.ASIC, README.FPGA, README.GPU, README.RPC, AND README.scrypt FOR
  22. MORE INFORMATION ON EACH.
  23. ---
  24. EXECUTIVE SUMMARY ON USAGE:
  25. After saving configuration from the menu, you do not need to give BFGMiner any
  26. arguments and it will load your configuration.
  27. Any configuration file may also contain a single
  28. "include" : "filename"
  29. to recursively include another configuration file.
  30. Writing the configuration will save all settings from all files in the output.
  31. Single pool:
  32. bfgminer -o http://pool:port -u username -p password
  33. Multiple pools:
  34. bfgminer -o http://pool1:port -u pool1username -p pool1password -o http://pool2:port -u pool2usernmae -p pool2password
  35. Single pool with a standard http proxy, regular desktop:
  36. bfgminer -o http://pool:port -x http://proxy:port -u username -p password
  37. Single pool with a socks5 proxy, regular desktop:
  38. bfgminer -o http://pool:port -x socks5://proxy:port -u username -p password
  39. The list of proxy types are:
  40. http: standard http 1.1 proxy
  41. socks4: socks4 proxy
  42. socks5: socks5 proxy
  43. socks4a: socks4a proxy
  44. socks5h: socks5 proxy using a hostname
  45. Proxy support requires cURL version 7.21.7 or newer.
  46. If you specify the --socks-proxy option to BFGMiner, it will only be applied to
  47. all pools that don't specify their own proxy setting like above
  48. ---
  49. BUILDING BFGMINER
  50. Dependencies:
  51. autoconf http://www.gnu.org/software/autoconf/
  52. automake http://www.gnu.org/software/automake/
  53. libtool http://www.gnu.org/software/libtool/
  54. pkg-config http://www.freedesktop.org/wiki/Software/pkg-config
  55. ...or pkgconf https://github.com/pkgconf/pkgconf
  56. libcurl4-gnutls-dev http://curl.haxx.se/libcurl/
  57. libjansson-dev 2.0+ http://www.digip.org/jansson/
  58. uthash-dev 1.9.2+ http://troydhanson.github.io/uthash/
  59. Optional Dependencies:
  60. Text-User-Interface (TUI): curses dev library; any one of:
  61. libncurses5-dev http://www.gnu.org/software/ncurses/ (Linux and Mac)
  62. libncursesw5-dev ^ same
  63. libpdcurses http://pdcurses.sourceforge.net/ (Linux/Mac/Windows)
  64. Multiple ASIC/FPGA autodetection: any one of:
  65. sysfs (builtin to most Linux kernels, just mount on /sys)
  66. libudev-dev http://www.freedesktop.org/software/systemd/libudev/
  67. X6500 and ZTEX FPGA boards:
  68. libusb-1.0-0-dev http://www.libusb.org/
  69. ATi/AMD video card GPU mining:
  70. AMD APP SDK http://developer.amd.com/tools/heterogeneous-computing/amd-accelerated-parallel-processing-app-sdk/
  71. CPU mining optimized assembly algorithms:
  72. yasm 1.0.1+ http://yasm.tortall.net/
  73. BFGMiner specific configuration options:
  74. --disable-avalon Compile support for Avalon (default enabled)
  75. --enable-cpumining Build with cpu mining support(default disabled)
  76. --disable-opencl Build without support for OpenCL (default enabled)
  77. --disable-adl Build without ADL monitoring (default enabled)
  78. --disable-bitforce Compile support for BitForce (default enabled)
  79. --disable-icarus Compile support for Icarus (default enabled)
  80. --disable-modminer Compile support for ModMiner (default enabled)
  81. --disable-x6500 Compile support for X6500 (default enabled)
  82. --disable-ztex Compile support for ZTEX (default if libusb)
  83. --enable-scrypt Compile support for scrypt mining (default disabled)
  84. --without-curses Compile support for curses TUI (default enabled)
  85. --without-libudev Autodetect FPGAs using libudev (default enabled)
  86. Basic *nix build instructions:
  87. ./autogen.sh # only needed if building from git repo
  88. ./configure
  89. make
  90. No installation is necessary. You may run BFGMiner from the build directory
  91. directly.
  92. On Mac OS X, you can use Homebrew to install the dependency libraries. When you
  93. are ready to build BFGMiner, you may need to point the configure script at one
  94. or more pkg-config paths. For example:
  95. ./configure PKG_CONFIG_PATH=/usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/jansson/lib/pkgconfig
  96. Native WIN32 build instructions: see windows-build.txt
  97. If you build BFGMiner from source, it is recommended that you run it from the
  98. build directory. On *nix, you will usually need to prepend your command with a
  99. path like this (if you are in the bfgminer directory already): ./bfgminer
  100. ---
  101. Usage instructions: Run "bfgminer --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: BFGMiner version)
  108. --api-groups API one letter groups G:cmd:cmd[,P:cmd:*...]
  109. See README.RPC 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-port Port number of miner API (default: 4028)
  115. --balance Change multipool strategy from failover to even share balance
  116. --benchmark Run BFGMiner in benchmark mode - produces no shares
  117. --coinbase-addr <arg> Set coinbase payout address for solo mining
  118. --coinbase-sig <arg> Set coinbase signature when possible
  119. --compact Use compact display without per device statistics
  120. --debug|-D Enable debug output
  121. --debuglog Enable debug logging
  122. --device|-d <arg> Select device to use, one value, range and/or comma separated (e.g. 0-2,4) default: all
  123. --disable-rejecting Automatically disable pools that continually reject shares
  124. --expiry|-E <arg> Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active) (default: 120)
  125. --expiry-lp <arg> Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active) (default: 3600)
  126. --failover-only Don't leak work to backup pools when primary pool is lagging
  127. --force-dev-init Always initialize devices when possible (such as bitstream uploads to some FPGAs)
  128. --kernel-path|-K <arg> Specify a path to where bitstream and kernel files are (default: "/usr/local/bin")
  129. --load-balance Change multipool strategy from failover to efficiency based balance
  130. --log|-l <arg> Interval in seconds between log output (default: 5)
  131. --log-microseconds Include microseconds in log output
  132. --monitor|-m <arg> Use custom pipe cmd for output messages
  133. --net-delay Impose small delays in networking to not overload slow routers
  134. --no-gbt Disable getblocktemplate support
  135. --no-getwork Disable getwork support
  136. --no-longpoll Disable X-Long-Polling support
  137. --no-restart Do not attempt to restart devices that hang
  138. --no-stratum Disable Stratum detection
  139. --no-submit-stale Don't submit shares if they are detected as stale
  140. --no-opencl-binaries Don't attempt to use or save OpenCL kernel binaries
  141. --pass|-p <arg> Password for bitcoin JSON-RPC server
  142. --per-device-stats Force verbose mode and output per-device statistics
  143. --pool-proxy|-x Proxy URI to use for connecting to just the previous-defined pool
  144. --protocol-dump|-P Verbose dump of protocol-level activities
  145. --queue|-Q <arg> Minimum number of work items to have queued (0 - 10) (default: 1)
  146. --quiet|-q Disable logging output, display status and errors
  147. --real-quiet Disable all output
  148. --remove-disabled Remove disabled devices entirely, as if they didn't exist
  149. --request-diff <arg> Request a specific difficulty from pools (default: 1.0)
  150. --retries <arg> Number of times to retry failed submissions before giving up (-1 means never) (default: -1)
  151. --rotate <arg> Change multipool strategy from failover to regularly rotate at N minutes (default: 0)
  152. --round-robin Change multipool strategy from failover to round robin on failure
  153. --scan-time|-s <arg> Upper bound on time spent scanning current work, in seconds (default: 60)
  154. --sched-start <arg> Set a time of day in HH:MM to start mining (a once off without a stop time)
  155. --sched-stop <arg> Set a time of day in HH:MM to stop mining (will quit without a start time)
  156. --scrypt Use the scrypt algorithm for mining (non-bitcoin)
  157. --sharelog <arg> Append share log to file
  158. --shares <arg> Quit after mining N shares (default: unlimited)
  159. --show-processors Show per processor statistics in summary
  160. --skip-security-checks <arg> Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)
  161. --socks-proxy <arg> Set socks4 proxy (host:port) for all pools without a proxy specified
  162. --submit-threads Minimum number of concurrent share submissions (default: 64)
  163. --syslog Use system log for output messages (default: standard error)
  164. --temp-cutoff <arg> Temperature where a device will be automatically disabled, one value or comma separated list (default: 95)
  165. --temp-hysteresis <arg> Set how much the temperature can fluctuate outside limits when automanaging speeds (default: 3)
  166. --temp-target <arg> Target temperature when automatically managing fan and clock speeds
  167. --text-only|-T Disable ncurses formatted screen output
  168. --url|-o <arg> URL for bitcoin JSON-RPC server
  169. --user|-u <arg> Username for bitcoin JSON-RPC server
  170. --verbose Log verbose output to stderr as well as status output
  171. --userpass|-O <arg> Username:Password pair for bitcoin JSON-RPC server
  172. Options for command line only:
  173. --config|-c <arg> Load a JSON-format configuration file
  174. See example.conf for an example configuration.
  175. --help|-h Print this message
  176. --version|-V Display version and exit
  177. GPU only options:
  178. --auto-fan Automatically adjust all GPU fan speeds to maintain a target temperature
  179. --auto-gpu Automatically adjust all GPU engine clock speeds to maintain a target temperature
  180. --disable-gpu|-G Disable GPU mining even if suitable devices exist
  181. --gpu-threads|-g <arg> Number of threads per GPU (1 - 10) (default: 2)
  182. --gpu-dyninterval <arg> Set the refresh interval in ms for GPUs using dynamic intensity (default: 7)
  183. --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)
  184. --gpu-fan <arg> GPU fan percentage range - one value, range and/or comma separated list (e.g. 25-85,85,65)
  185. --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)
  186. --gpu-memclock <arg> Set the GPU memory (over)clock in MHz - one value for all or separate by commas for per card.
  187. --gpu-memdiff <arg> Set a fixed difference in clock speed between the GPU and memory in auto-gpu mode
  188. --gpu-platform <arg> Select OpenCL platform ID to use for GPU mining
  189. --gpu-powertune <arg> Set the GPU powertune percentage - one value for all or separate by commas for per card.
  190. --gpu-reorder Attempt to reorder GPU devices according to PCI Bus ID
  191. --gpu-vddc <arg> Set the GPU voltage in Volts - one value for all or separate by commas for per card.
  192. --intensity|-I <arg> Intensity of GPU scanning (d or -10 -> 10, default: d to maintain desktop interactivity)
  193. --kernel|-k <arg> Override kernel to use (diablo, poclbm, phatk or diakgcn) - one value or comma separated
  194. --ndevs|-n Enumerate number of detected GPUs and exit
  195. --no-adl Disable the ATI display library used for monitoring and setting GPU parameters
  196. --temp-overheat <arg> Overheat temperature when automatically managing fan and GPU speeds (default: 85)
  197. --vectors|-v <arg> Override detected optimal vector (1, 2 or 4) - one value or comma separated list
  198. --worksize|-w <arg> Override detected optimal worksize - one value or comma separated list
  199. See README.GPU for more information regarding GPU mining.
  200. scrypt only options:
  201. --lookup-gap <arg> Set GPU lookup gap for scrypt mining, comma separated
  202. --shaders <arg> GPU shaders per card for tuning scrypt, comma separated
  203. --thread-concurrency <arg> Set GPU thread concurrency for scrypt mining, comma separated
  204. See README.scrypt for more information regarding (non-bitcoin) scrypt mining.
  205. ASIC/FPGA mining boards (BitForce, Icarus, ModMiner, X6500, ZTEX) only options:
  206. --scan-serial|-S <arg> Serial port to probe for mining devices
  207. To use ASICs or FPGAs, you will need to be sure the user BFGMiner is running as
  208. has appropriate permissions. This varies by operating system.
  209. On Gentoo: sudo usermod <username> -a -G uucp
  210. On Ubuntu: sudo usermod <username> -a -G dialout
  211. Note that on GNU/Linux systems, you will usually need to login again before
  212. group changes take effect.
  213. By default, BFGMiner will scan for autodetected devices unless at least one -S
  214. is specified for that driver. If you specify -S and still want BFGMiner to scan,
  215. you must also use "-S auto". If you want to prevent BFGMiner from scanning
  216. without specifying a device, you can use "-S noauto". Note that presently,
  217. autodetection only works on Linux, and might only detect one device depending
  218. on the version of udev being used. If you want to scan all serial ports, you
  219. can use "-S all"; note that this may write data to non-mining devices which may
  220. then behave in unexpected ways!
  221. On Linux, <arg> is usually of the format /dev/ttyUSBn
  222. On Mac OS X, <arg> is usually of the format /dev/cu.usb*
  223. On Windows, <arg> is usually of the format \\.\COMn
  224. (where n = the correct device number for the device)
  225. The official supplied binaries are compiled with support for all ASICs/FPGAs.
  226. To force the code to only attempt detection with a specific driver,
  227. prepend the argument with the driver name followed by a colon.
  228. For example, "icarus:/dev/ttyUSB0" or "bitforce:\\.\COM5"
  229. or using the short name: "ica:/dev/ttyUSB0" or "bfl:\\.\COM5"
  230. Some FPGAs do not have non-volatile storage for their bitstreams and must be
  231. programmed every power cycle, including first use. To use these devices, you
  232. must download the BFGMiner source archive (bfgminer-x.y.z.zip) and copy the
  233. "bitstreams" directory into your BFGMiner application directory.
  234. See README.ASIC and README.FPGA for more information regarding these.
  235. CPU only options (not included in binaries):
  236. --algo|-a <arg> Specify sha256 implementation for CPU mining:
  237. fastauto* Quick benchmark at startup to pick a working algorithm
  238. auto Benchmark at startup and pick fastest algorithm
  239. c Linux kernel sha256, implemented in C
  240. 4way tcatm's 4-way SSE2 implementation
  241. via VIA padlock implementation
  242. cryptopp Crypto++ C/C++ implementation
  243. cryptopp_asm32 Crypto++ 32-bit assembler implementation
  244. sse2_32 SSE2 32 bit implementation for i386 machines
  245. sse2_64 SSE2 64 bit implementation for x86_64 machines
  246. sse4_64 SSE4.1 64 bit implementation for x86_64 machines
  247. altivec_4way Altivec implementation for PowerPC G4 and G5 machines
  248. --cpu-threads|-t <arg> Number of miner CPU threads (default: 4)
  249. --enable-cpu|-C Enable CPU mining with other mining (default: no CPU mining if other devices exist)
  250. ---
  251. WHILE RUNNING:
  252. The following options are available while running with a single keypress:
  253. [P]ool management [G]PU management [S]ettings [D]isplay options [Q]uit
  254. P gives you:
  255. Current pool management strategy: Failover
  256. [F]ailover only disabled
  257. [A]dd pool [R]emove pool [D]isable pool [E]nable pool
  258. [C]hange management strategy [S]witch pool [I]nformation
  259. S gives you:
  260. [L]ongpoll: On
  261. [Q]ueue: 1
  262. [S]cantime: 60
  263. [E]xpiry: 120
  264. [R]etries: -1
  265. [W]rite config file
  266. [B]FGMiner restart
  267. D gives you:
  268. [N]ormal [C]lear [S]ilent mode (disable all output)
  269. [D]ebug:off
  270. [P]er-device:off
  271. [Q]uiet:off
  272. [V]erbose:off
  273. [R]PC debug:off
  274. [W]orkTime details:off
  275. co[M]pact: off
  276. [L]og interval:5
  277. Q quits the application.
  278. G gives you something like:
  279. GPU 0: [124.2 / 191.3 Mh/s] [A:77 R:33+0( 42%) HW:0]
  280. Temp: 67.0 C
  281. Fan Speed: 35% (2500 RPM)
  282. Engine Clock: 960 MHz
  283. Memory Clock: 480 MHz
  284. Vddc: 1.200 V
  285. Activity: 93%
  286. Powertune: 0%
  287. Last initialised: [2011-09-06 12:03:56]
  288. Thread 0: 62.4 Mh/s Enabled ALIVE
  289. Thread 1: 60.2 Mh/s Enabled ALIVE
  290. [E]nable [D]isable [R]estart GPU [C]hange settings
  291. Or press any other key to continue
  292. The running log shows output like this:
  293. [2013-02-13 00:26:30] Accepted 1758e8df BFL 0 pool 0 Diff 10/1
  294. [2013-02-13 00:26:32] Accepted 1d9a2199 MMQ 0a pool 0 Diff 8/1
  295. [2013-02-13 00:26:33] Accepted b1304924 ZTX 0 pool 0 Diff 1/1
  296. [2013-02-13 00:26:33] Accepted c3ad22f4 XBS 0b pool 0 Diff 1/1
  297. The 8 byte hex value are the 2nd set of 32 bits from the share submitted to the
  298. pool. The 2 diff values are the actual difficulty target that share reached
  299. followed by the difficulty target the pool is currently asking for.
  300. ---
  301. Also many issues and FAQs are covered in the forum threads
  302. dedicated to this program,
  303. https://bitcointalk.org/?topic=78192
  304. https://bitcointalk.org/?topic=168174
  305. The output line shows the following:
  306. 5s:1713.6 avg:1707.8 u:1710.2 Mh/s | A:729 R:8+0(.01%) HW:0/.81%
  307. Each column is as follows:
  308. 5s: A 5 second exponentially decaying average hash rate
  309. avg: An all time average hash rate
  310. u: An all time average hash rate based on actual accepted shares
  311. A: The number of Accepted shares
  312. R: The number of Rejected shares, stale shares discarded (never submitted),
  313. and the percentage these are of total found.
  314. HW: The number of HardWare errors, and percentage invalid of nonces returned
  315. GPU 1: 73.5C 2551RPM | 427.3/443.0/442.1Mh/s | A:8 R:0+0(none) HW:0 U:4.39/m
  316. Each column is as follows:
  317. Temperature (if supported)
  318. Fanspeed (if supported)
  319. A 5 second exponentially decaying average hash rate
  320. An all time average hash rate
  321. An all time average hash rate based on actual accepted shares
  322. The number of accepted shares
  323. The number of rejected shares (and percentage of total submitted)
  324. The number of hardware erorrs
  325. The utility defines as the number of shares / minute
  326. The BFGMiner status line shows:
  327. ST: 1 GF: 1 NB: 1 AS: 0 RF: 1 E: 2.42 U:22.53/m BS:2.71k
  328. ST is STaged work items (ready to use).
  329. GF is Getwork Fail Occasions (server slow to provide work)
  330. NB is New Blocks detected on the network
  331. AS is Active Submissions (shares in the process of submitting)
  332. RF is Remote Fail occasions (server slow to accept work)
  333. E is Efficiency defined as number of shares accepted (multiplied by their
  334. difficulty) per 2 KB of bandwidth
  335. U is Utility defined as the number of shares / minute
  336. BS is the all time Best Share difficulty you've found
  337. The block display shows:
  338. Block: ...1b89f8d3 #217364 Diff:7.67M (54.93Th/s) Started: [17:17:22]
  339. This shows a short stretch of the current block, the next block's height and
  340. difficulty (including the network hashrate that difficulty represents), and when
  341. the search for the new block started.
  342. ---
  343. MULTIPOOL
  344. FAILOVER STRATEGIES WITH MULTIPOOL:
  345. A number of different strategies for dealing with multipool setups are
  346. available. Each has their advantages and disadvantages so multiple strategies
  347. are available by user choice, as per the following list:
  348. FAILOVER:
  349. The default strategy is failover. This means that if you input a number of
  350. pools, it will try to use them as a priority list, moving away from the 1st
  351. to the 2nd, 2nd to 3rd and so on. If any of the earlier pools recover, it will
  352. move back to the higher priority ones.
  353. ROUND ROBIN:
  354. This strategy only moves from one pool to the next when the current one falls
  355. idle and makes no attempt to move otherwise.
  356. ROTATE:
  357. This strategy moves at user-defined intervals from one active pool to the next,
  358. skipping pools that are idle.
  359. LOAD BALANCE:
  360. This strategy sends work to all the pools to maintain optimum load. The most
  361. efficient pools will tend to get a lot more shares. If any pool falls idle, the
  362. rest will tend to take up the slack keeping the miner busy.
  363. BALANCE:
  364. This strategy monitors the amount of difficulty 1 shares solved for each pool
  365. and uses it to try to end up doing the same amount of work for all pools.
  366. ---
  367. SOLO MINING
  368. BFGMiner supports solo mining with any GBT-compatible bitcoin node (such as
  369. bitcoind). To use this mode, you need to specify the URL of your bitcoind node
  370. using the usual pool options (--url, --userpass, etc), and the --coinbase-addr
  371. option to specify the Bitcoin address you wish to receive the block rewards
  372. mined. If you are solo mining with more than one instance of BFGMiner (or any
  373. other software) per payout address, you must also specify data using the
  374. --coinbase-sig option to ensure each miner is working on unique work. Note
  375. that this data will be publicly seen if your miner finds a block using any
  376. GBT-enabled pool, even when not solo mining (such as failover). If your
  377. bitcoin node does not support longpolling (for example, bitcoind 0.7.x), you
  378. should consider setting up a failover pool to provide you with block
  379. notifications.
  380. Example solo mining usage:
  381. bfgminer -o http://localhost:8332 -u username -p password \
  382. --coinbase-addr 1QATWksNFGeUJCWBrN4g6hGM178Lovm7Wh \
  383. --coinbase-sig "rig1: This is Joe's block!"
  384. ---
  385. LOGGING
  386. BFGMiner will log to stderr if it detects stderr is being redirected to a file.
  387. To enable logging simply add 2>logfile.txt to your command line and logfile.txt
  388. will contain the logged output at the log level you specify (normal, verbose,
  389. debug etc.)
  390. In other words if you would normally use:
  391. ./bfgminer -o xxx -u yyy -p zzz
  392. if you use
  393. ./bfgminer -o xxx -u yyy -p zzz 2>logfile.txt
  394. it will log to a file called logfile.txt and otherwise work the same.
  395. There is also the -m option on linux which will spawn a command of your choice
  396. and pipe the output directly to that command.
  397. The WorkTime details 'debug' option adds details on the end of each line
  398. displayed for Accepted or Rejected work done. An example would be:
  399. <-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
  400. The first 2 hex codes are the previous block hash, the rest are reported in
  401. seconds unless stated otherwise:
  402. The previous hash is followed by the getwork mode used M:X where X is one of
  403. P:Pool, T:Test Pool, L:LP or B:Benchmark,
  404. then D:d.ddd is the difficulty required to get a share from the work,
  405. then G:hh:mm:ss:n.nnn, which is when the getwork or LP was sent to the pool and
  406. the n.nnn is how long it took to reply,
  407. followed by 'O' on its own if it is an original getwork, or 'C:n.nnn' if it was
  408. a clone with n.nnn stating how long after the work was recieved that it was
  409. cloned, (m.mmm) is how long from when the original work was received until work
  410. started,
  411. W:n.nnn is how long the work took to process until it was ready to submit,
  412. (m.mmm) is how long from ready to submit to actually doing the submit, this is
  413. usually 0.000 unless there was a problem with submitting the work,
  414. S:n.nnn is how long it took to submit the completed work and await the reply,
  415. R:hh:mm:ss is the actual time the work submit reply was received
  416. If you start BFGMiner with the --sharelog option, you can get detailed
  417. information for each share found. The argument to the option may be "-" for
  418. standard output (not advisable with the ncurses UI), any valid positive number
  419. for that file descriptor, or a filename.
  420. To log share data to a file named "share.log", you can use either:
  421. ./bfgminer --sharelog 50 -o xxx -u yyy -p zzz 50>share.log
  422. ./bfgminer --sharelog share.log -o xxx -u yyy -p zzz
  423. For every share found, data will be logged in a CSV (Comma Separated Value)
  424. format:
  425. timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  426. For example (this is wrapped, but it's all on one line for real):
  427. 1335313090,reject,
  428. ffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000,
  429. http://localhost:8337,GPU0,0,
  430. 6f983c918f3299b58febf95ec4d0c7094ed634bc13754553ec34fc3800000000,
  431. 00000001a0980aff4ce4a96d53f4b89a2d5f0e765c978640fe24372a000001c5
  432. 000000004a4366808f81d44f26df3d69d7dc4b3473385930462d9ab707b50498
  433. f681634a4f1f63d01a0cd43fb338000000000080000000000000000000000000
  434. 0000000000000000000000000000000000000000000000000000000080020000
  435. ---
  436. RPC API
  437. For RPC API details see the README.RPC file
  438. ---
  439. FAQ
  440. Q: Why can't BFGMiner find lib<something> even after I installed it from source
  441. code?
  442. A: On UNIX-like operating systems, you often need to run some command to reload
  443. its library caches such as "ldconfig" or similar. A couple of systems (such as
  444. Fedora) ship with /usr/local/lib missing from their library search path. In
  445. this case, you can usually add it like this:
  446. echo /usr/local/lib >/etc/ld.so.conf.d/local.conf
  447. Please note that if your libraries installed into lib64 instead of lib, you
  448. should use that in the ld.so config file above instead.
  449. Q: BFGMiner segfaults when I change my shell window size.
  450. A: Older versions of libncurses have a bug to do with refreshing a window
  451. after a size change. Upgrading to a new version of curses will fix it.
  452. Q: Can I mine on servers from different networks (eg smartcoin and bitcoin) at
  453. the same time?
  454. A: No, BFGMiner keeps a database of the block it's working on to ensure it does
  455. not work on stale blocks, and having different blocks from two networks would
  456. make it invalidate the work from each other.
  457. Q: Can I configure BFGMiner to mine with different login credentials or pools
  458. for each separate device?
  459. A: No.
  460. Q: Can I put multiple pools in the config file?
  461. A: Yes, check the example.conf file. Alternatively, set up everything either on
  462. the command line or via the menu after startup and choose settings->write
  463. config file and the file will be loaded one each startup.
  464. Q: The build fails with gcc is unable to build a binary.
  465. A: Remove the "-march=native" component of your CFLAGS as your version of GCC
  466. does not support it.
  467. Q: Can you implement feature X?
  468. A: I can, but time is limited, and people who donate are more likely to get
  469. their feature requests implemented.
  470. Q: Work keeps going to my backup pool even though my primary pool hasn't
  471. failed?
  472. A: BFGMiner checks for conditions where the primary pool is lagging and will
  473. pass some work to the backup servers under those conditions. The reason for
  474. doing this is to try its absolute best to keep the GPUs working on something
  475. useful and not risk idle periods. You can disable this behaviour with the
  476. option --failover-only.
  477. Q: Is this a virus?
  478. A: BFGMiner is being packaged with other trojan scripts and some antivirus
  479. software is falsely accusing bfgminer.exe as being the actual virus, rather
  480. than whatever it is being packaged with. If you installed BFGMiner yourself,
  481. then you do not have a virus on your computer. Complain to your antivirus
  482. software company. They seem to be flagging even source code now from BFGMiner
  483. as viruses, even though text source files can't do anything by themself.
  484. Q: Can you modify the display to include more of one thing in the output and
  485. less of another, or can you change the quiet mode or can you add yet another
  486. output mode?
  487. A: Everyone will always have their own view of what's important to monitor.
  488. The defaults are very sane and I have very little interest in changing this
  489. any further.
  490. Q: Why is my efficiency above/below 1.00?
  491. A: Efficiency simply means how many shares you return for the amount of
  492. bandwidth used. It does not correlate with efficient use of your hardware, and
  493. is a measure of a combination of hardware speed, block luck, pool design and
  494. other factors.
  495. Q: What are the best parameters to pass for X pool/hardware/device.
  496. A: Virtually always, the DEFAULT parameters give the best results. Most user
  497. defined settings lead to worse performance. The ONLY thing most users should
  498. need to set is the Intensity for GPUs.
  499. Q: What happened to CPU mining?
  500. A: Being increasingly irrelevant for most users, and a maintenance issue, it is
  501. no longer under active development and will not be supported unless someone
  502. steps up to help maintain it. No binary builds supporting CPU mining will be
  503. released but CPU mining can be built into BFGMiner when it is compiled.
  504. Q: GUI version?
  505. A: No. The RPC interface makes it possible for someone else to write one
  506. though.
  507. Q: I'm having an issue. What debugging information should I provide?
  508. A: Start BFGMiner with your regular commands and add -D -T --verbose and provide
  509. the full startup output and a summary of your hardware, operating system, ATI
  510. driver version and ATI stream version.
  511. Q: Can I mine with BFGMiner on a Mac?
  512. A: BFGMiner will compile on OS X, but the performance of GPU mining is
  513. compromised due to the OpenCL implementation on OS X, there is no temperature or
  514. fanspeed monitoring, and the cooling design of most Macs, despite having
  515. powerful GPUs, will usually not cope with constant usage leading to a high risk
  516. of thermal damage. It is highly recommended not to mine on a Mac unless it is to
  517. a USB device.
  518. Q: My network gets slower and slower and then dies for a minute?
  519. A; Try the --net-delay option.
  520. Q: How do I tune for P2Pool?
  521. A: P2Pool has very rapid expiration of work and new blocks, it is suggested you
  522. decrease intensity by 1 from your optimal value, and decrease GPU threads to 1
  523. with -g 1. It is also recommended to use --failover-only since the work is
  524. effectively like a different block chain. If mining with a Mini Rig, it is worth
  525. adding the --bfl-range option.
  526. Q: Are OpenCL kernels from other mining software useable in BFGMiner?
  527. A: No, the APIs are slightly different between the different software and they
  528. will not work.
  529. Q: I run PHP on windows to access the API with the example miner.php. Why does
  530. it fail when php is installed properly but I only get errors about Sockets not
  531. working in the logs?
  532. A: http://us.php.net/manual/en/sockets.installation.php
  533. Q: What is a PGA?
  534. A: At the moment, BFGMiner supports 5 FPGAs: BitForce, Icarus, ModMiner, X6500,
  535. and ZTEX.
  536. They are Field-Programmable Gate Arrays that have been programmed to do Bitcoin
  537. mining. Since the acronym needs to be only 3 characters, the "Field-" part has
  538. been skipped. "PGA" is also used for devices built with Application-Specific
  539. Integrated Circuits (ASICs).
  540. Q: What is an ASIC?
  541. A: BFGMiner currently supports 2 ASICs: Avalon and BitForce SC devices. They are
  542. Application Specify Integrated Circuit devices and provide the highest
  543. performance per unit power due to being dedicated to only one purpose.
  544. Q: How do I get my BFL/Icarus/Lancelot/Cairnsmore device to auto-recognise?
  545. A: On Linux, if the /dev/ttyUSB* devices don't automatically appear, the only
  546. thing that needs to be done is to load the driver for them:
  547. BFL: sudo modprobe ftdi_sio vendor=0x0403 product=0x6014
  548. Icarus: sudo modprobe pl2303 vendor=0x067b product=0x230
  549. Lancelot: sudo modprobe ftdi_sio vendor=0x0403 product=0x6001
  550. Cairnsmore: sudo modprobe ftdi_sio product=0x8350 vendor=0x0403
  551. On windows you must install the pl2303 or ftdi driver required for the device
  552. pl2303: http://prolificusa.com/pl-2303hx-drivers/
  553. ftdi: http://www.ftdichip.com/Drivers/VCP.htm
  554. Q: On Linux I can see the /dev/ttyUSB* devices for my ICA/BFL/MMQ FPGA, but
  555. BFGMiner can't mine on them
  556. A: Make sure you have the required priviledges to access the /dev/ttyUSB*
  557. devices:
  558. sudo ls -las /dev/ttyUSB*
  559. will give output like:
  560. 0 crw-rw---- 1 root dialout 188, 0 2012-09-11 13:49 /dev/ttyUSB0
  561. This means your account must have the group 'dialout' or root priviledges
  562. To permanently give your account the 'dialout' group:
  563. sudo usermod -G dialout -a `whoami`
  564. Then logout and back in again
  565. Q: Can I mine scrypt with FPGAs or ASICs?
  566. A: No.
  567. Q: What is stratum and how do I use it?
  568. A: Stratum is a protocol designed to reduce resources for mining pools at the
  569. cost of keeping the miner in the dark and blindly transferring his mining
  570. authority to the pool. It is a return to the problems of the old centralized
  571. "getwork" protocol, but capable of scaling to hardware of any speed like the
  572. standard GBT protocol. If a pool uses stratum instead of GBT, BFGMiner will
  573. automatically detect it and switch to the support as advertised if it can.
  574. Stratum uses direct TCP connections to the pool and thus it will NOT currently
  575. work through a http proxy but will work via a socks proxy if you need to use
  576. one. If you input the stratum port directly into your configuration, or use the
  577. special prefix "stratum+tcp://" instead of "http://", BFGMiner will ONLY try to
  578. use stratum protocol mining.
  579. Q: Why don't the statistics add up: Accepted, Rejected, Stale, Hardware Errors,
  580. Diff1 Work, etc. when mining greater than 1 difficulty shares?
  581. A: As an example, if you look at 'Difficulty Accepted' in the RPC API, the number
  582. of difficulty shares accepted does not usually exactly equal the amount of work
  583. done to find them. If you are mining at 8 difficulty, then you would expect on
  584. average to find one 8 difficulty share, per 8 single difficulty shares found.
  585. However, the number is actually random and converges over time, it is an average,
  586. not an exact value, thus you may find more or less than the expected average.
  587. ---
  588. This code is provided entirely free of charge by the programmer in his spare
  589. time so donations would be greatly appreciated. Please consider donating to the
  590. address below.
  591. Luke-Jr <luke-jr+bfgminer@utopios.org>
  592. 1QATWksNFGeUJCWBrN4g6hGM178Lovm7Wh