README 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956
  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-blockchain, multi-pool ASIC, FPGA, GPU and CPU
  5. miner with dynamic clocking, monitoring, and fanspeed support for bitcoin.
  6. This code is provided entirely free of charge by the programmer in his spare
  7. time so donations would be greatly appreciated. Please consider donating to the
  8. address below.
  9. Luke-Jr <luke-jr+bfgminer@utopios.org>
  10. 1QATWksNFGeUJCWBrN4g6hGM178Lovm7Wh
  11. DOWNLOADS:
  12. http://luke.dashjr.org/programs/bitcoin/files/bfgminer
  13. GIT TREE:
  14. https://github.com/luke-jr/bfgminer
  15. Bug reports:
  16. https://github.com/luke-jr/bfgminer/issues
  17. IRC Channel:
  18. irc://irc.freenode.net/eligius
  19. License: GPLv3. See COPYING for details.
  20. SEE ALSO README.ASIC, README.FPGA, README.GPU, README.RPC, AND README.scrypt FOR
  21. MORE INFORMATION ON EACH.
  22. ---
  23. EXECUTIVE SUMMARY ON USAGE:
  24. Single pool:
  25. bfgminer -o http://pool:port -u username -p password
  26. Multiple pools:
  27. bfgminer -o http://pool1:port -u pool1username -p pool1password -o http://pool2:port -u pool2usernmae -p pool2password
  28. Multiple blockchains:
  29. bfgminer -o http://pool1:port -u pool1username -p pool1password --pool-goal default -o http://pool2:port -u pool2usernmae -p pool2password --pool-goal freicoin
  30. Single pool with a standard http proxy:
  31. bfgminer -o http://pool:port -x http://proxy:port -u username -p password
  32. Single pool with a socks5 proxy:
  33. bfgminer -o http://pool:port -x socks5://proxy:port -u username -p password
  34. The list of proxy types are:
  35. http: standard http 1.1 proxy
  36. socks4: socks4 proxy
  37. socks5: socks5 proxy
  38. socks4a: socks4a proxy
  39. socks5h: socks5 proxy using a hostname
  40. Proxy support requires cURL version 7.21.7 or newer.
  41. If you specify the --socks-proxy option to BFGMiner, it will only be applied to
  42. all pools that don't specify their own proxy setting like above
  43. After saving configuration from the menu ([S],[W]) you do not need to give
  44. BFGMiner any arguments, it will load your configuration instead.
  45. Any configuration file may also contain a single
  46. "include" : "filename"
  47. to recursively include another configuration file.
  48. Writing the configuration will save all settings from all files to the output
  49. configuration file.
  50. ---
  51. BUILDING BFGMINER
  52. Everything you probably want, condensed:
  53. build-essential autoconf automake libtool pkg-config libcurl4-gnutls-dev
  54. libjansson-dev uthash-dev libncursesw5-dev libudev-dev libusb-1.0-0-dev
  55. libevent-dev libmicrohttpd-dev hidapi
  56. Dependencies:
  57. autoconf http://www.gnu.org/software/autoconf/
  58. automake http://www.gnu.org/software/automake/
  59. libtool http://www.gnu.org/software/libtool/
  60. pkg-config http://www.freedesktop.org/wiki/Software/pkg-config
  61. ...or pkgconf https://github.com/pkgconf/pkgconf
  62. libcurl4-gnutls-dev http://curl.haxx.se/libcurl/
  63. libjansson-dev 2.0+ http://www.digip.org/jansson/
  64. uthash-dev 1.9.4+ http://troydhanson.github.io/uthash/
  65. Optional Dependencies:
  66. Text-User-Interface (TUI): curses dev library; any one of:
  67. libncurses5-dev http://www.gnu.org/software/ncurses/ (Linux and Mac)
  68. libncursesw5-dev ^ same
  69. libpdcurses http://pdcurses.sourceforge.net/ (Linux/Mac/Windows)
  70. Multiple ASIC/FPGA autodetection: any one of:
  71. sysfs (built-in to most Linux kernels, just mount on /sys)
  72. libudev-dev http://www.freedesktop.org/software/systemd/libudev/
  73. HashBuster Nano & NanoFury USB devices:
  74. hidapi https://github.com/signal11/hidapi
  75. getwork server for Block Erupter Blades:
  76. libmicrohttpd-dev 0.9.5+ http://www.gnu.org/software/libmicrohttpd/
  77. Stratum proxy:
  78. libevent 2.0.3+ http://libevent.org/
  79. HashBuster Micro, Klondike, X6500 and ZTEX FPGA boards:
  80. libusb-1.0-0-dev http://www.libusb.org/
  81. Video card GPU mining (free):
  82. llvm 3.3+ http://llvm.org/
  83. clang 3.3+ http://clang.llvm.org/
  84. libclc http://libclc.llvm.org/
  85. Mesa 9.2.0+ http://www.mesa3d.org/
  86. ATi/AMD video card GPU mining (non-free):
  87. AMD APP SDK http://developer.amd.com/tools/heterogeneous-computing/amd-accelerated-parallel-processing-app-sdk/
  88. CPU mining optimized assembly algorithms:
  89. yasm 1.0.1+ http://yasm.tortall.net/
  90. BFGMiner driver configuration options:
  91. --disable-other-drivers Build without drivers by default unless explicitly
  92. enabled
  93. --enable-broad-udevrules
  94. Include udev rules for ambiguous devices which may
  95. not be miners
  96. --disable-avalon Compile support for Avalon (default enabled)
  97. --disable-avalonmm Compile support for Avalon2/3 (default enabled)
  98. --enable-bfsb Compile support for BFSB (default disabled)
  99. --disable-bfx Compile support for BFx2 (default enabled)
  100. --disable-bifury Compile support for Bi*Fury (default enabled)
  101. --disable-bigpic Compile support for Big Picture Mining USB (default
  102. enabled)
  103. --disable-bitforce Compile support for BitForce (default enabled)
  104. --disable-bitfury Compile support for Bitfury (default enabled)
  105. --disable-cointerra Compile support for CoinTerra (default enabled)
  106. --enable-cpumining Compile support for CPU mining (default disabled)
  107. --disable-drillbit Compile support for DrillBit (default enabled)
  108. --disable-dualminer Compile support for DualMiner (default enabled)
  109. --disable-gridseed Compile support for GridSeed (default enabled)
  110. --disable-hashbuster Compile support for HashBuster Nano (default
  111. enabled)
  112. --disable-hashbusterusb Compile support for HashBuster Micro (default
  113. enabled)
  114. --disable-hashfast Compile support for HashFast (default enabled)
  115. --disable-icarus Compile support for Icarus (default enabled)
  116. --enable-jingtian Compile support for JingTian (default disabled)
  117. --disable-klondike Compile support for Klondike (default enabled)
  118. --enable-knc Compile support for KnC (default disabled)
  119. --enable-kncasic Compile support for KnC gen 2 (default disabled)
  120. --disable-littlefury Compile support for LittleFury (default enabled)
  121. --enable-metabank Compile support for Metabank (default disabled)
  122. --enable-minergate Compile support for Spondoolies minergate interface
  123. (default disabled)
  124. --disable-modminer Compile support for ModMiner (default enabled)
  125. --disable-nanofury Compile support for NanoFury (default enabled)
  126. --enable-opencl Compile support for OpenCL (default disabled)
  127. --disable-adl Build without ADL monitoring (default enabled)
  128. --disable-rockminer Compile support for RockMiner (default enabled)
  129. --enable-titan Compile support for KnC Titan (default disabled)
  130. --disable-twinfury Compile support for Twinfury (default enabled)
  131. --disable-x6500 Compile support for X6500 (default enabled)
  132. --disable-zeusminer Compile support for ZeusMiner (default enabled)
  133. --disable-ztex Compile support for ZTEX (default enabled)
  134. BFGMiner algorithm configuration option:
  135. --disable-sha256d Compile support for SHA256d (default enabled)
  136. --enable-scrypt Compile support for scrypt (default disabled)
  137. BFGMiner dependency configuration options:
  138. --without-curses Compile support for curses TUI (default enabled)
  139. --without-libevent Compile support for libevent stratum server (default
  140. enabled)
  141. --without-libmicrohttpd Compile support for libmicrohttpd getwork server
  142. (default enabled)
  143. --without-libudev Autodetect FPGAs using libudev (default enabled)
  144. --without-libusb Compile using libusb (default enabled)
  145. --without-sensors Build with libsensors monitoring (default enabled)
  146. --with-system-libblkmaker
  147. Use system libblkmaker rather than bundled one
  148. (default disabled)
  149. --with-udevrulesdir=DIR Install udev rules into this directory
  150. --with-udevrules-group=groupname
  151. Configure mining devices to be owned by a specific
  152. group (default `video')
  153. --without-uio Compile support for PCI devices via Linux UIO
  154. interface (default enabled)
  155. --without-vfio Compile support for PCI devices via Linux VFIO
  156. interface (default enabled)
  157. Basic *nix build instructions:
  158. ./autogen.sh # only needed if building from git repo
  159. ./configure # list configuration options here
  160. make
  161. No installation is necessary. You may run BFGMiner from the build directory
  162. directly.
  163. On Mac OS X, you can use Homebrew to install the dependency libraries. When you
  164. are ready to build BFGMiner, you may need to point the configure script at one
  165. or more pkg-config paths. For example:
  166. ./configure PKG_CONFIG_PATH=/usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/jansson/lib/pkgconfig
  167. Native WIN32 build instructions: see windows-build.txt
  168. If you build BFGMiner from source, it is recommended that you run it from the
  169. build directory. On *nix, you will usually need to prepend your command with a
  170. path like this (if you are in the bfgminer directory already): ./bfgminer
  171. To install system wide run 'sudo make install' or 'make install' as root. You
  172. can then run from any terminal.
  173. ---
  174. Usage instructions: Run "bfgminer --help" to see options:
  175. Usage: bfgminer [-DdElmpPQqUsTouOchnV]
  176. Options for both config file and command line:
  177. --api-allow Allow API access (if enabled) only to the given list of [W:]IP[/Prefix] address[/subnets]
  178. This overrides --api-network and you must specify 127.0.0.1 if it is required
  179. W: in front of the IP address gives that address privileged access to all api commands
  180. --api-description Description placed in the API status header (default: BFGMiner version)
  181. --api-groups API one letter groups G:cmd:cmd[,P:cmd:*...]
  182. See README.RPC for usage
  183. --api-listen Listen for API requests (default: disabled)
  184. By default any command that does not just display data returns access denied
  185. See --api-allow to overcome this
  186. --api-mcast Enable API Multicast listener, default: disabled
  187. --api-mcast-addr <arg> API Multicast listen address (default: "224.0.0.75")
  188. --api-mcast-code <arg> Code expected in the API Multicast message, don't use '-' (default: "FTW")
  189. --api-mcast-des <arg> Description appended to the API Multicast reply, default: ''
  190. --api-mcast-port <arg> API Multicast listen port (default: 4028)
  191. --api-network Allow API (if enabled) to listen on/for any address (default: only 127.0.0.1)
  192. --api-port Port number of miner API (default: 4028)
  193. --balance Change multipool strategy from failover to even share balance
  194. --benchmark Run BFGMiner in benchmark mode - produces no shares
  195. --benchmark-intense Run BFGMiner in intensive benchmark mode - produces no shares
  196. --chroot-dir <arg> Chroot to a directory right after startup
  197. --cmd-idle <arg> Execute a command when a device is allowed to be idle (rest or wait)
  198. --cmd-sick <arg> Execute a command when a device is declared sick
  199. --cmd-dead <arg> Execute a command when a device is declared dead
  200. --coinbase-check-addr <arg> A list of address to check against in coinbase payout list received from the previous-defined pool, separated by ','
  201. --coinbase-check-total <arg> The least total payout amount expected in coinbase received from the previous-defined pool
  202. --coinbase-check-percent <arg> The least benefit percentage expected for the sum of addr(s) listed in --cbaddr argument for previous-defined pool
  203. --coinbase-sig <arg> Set coinbase signature when possible
  204. --compact Use compact display without per device statistics
  205. --debug|-D Enable debug output
  206. --debuglog Enable debug logging
  207. --device-protocol-dump Verbose dump of device protocol-level activities
  208. --device|-d <arg> Enable only devices matching pattern (default: all)
  209. --disable-rejecting Automatically disable pools that continually reject shares
  210. --http-port <arg> Port number to listen on for HTTP getwork miners (-1 means disabled) (default: -1)
  211. --expiry <arg> Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active) (default: 120)
  212. --expiry-lp <arg> Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active) (default: 3600)
  213. --failover-only Don't leak work to backup pools when primary pool is lagging
  214. --failover-switch-delay <arg> Delay in seconds before switching back to a failed pool (default: 300)
  215. --generate-to <arg> Set an address to generate to for solo mining
  216. --force-dev-init Always initialize devices when possible (such as bitstream uploads to some FPGAs)
  217. --kernel-path <arg> Specify a path to where bitstream and kernel files are
  218. --load-balance Change multipool strategy from failover to quota based balance
  219. --log|-l <arg> Interval in seconds between log output (default: 20)
  220. --log-file|-L <arg> Append log file for output messages
  221. --log-microseconds Include microseconds in log output
  222. --monitor|-m <arg> Use custom pipe cmd for output messages
  223. --net-delay Impose small delays in networking to avoid overloading slow routers
  224. --no-gbt Disable getblocktemplate support
  225. --no-getwork Disable getwork support
  226. --no-hotplug Disable hotplug detection
  227. --no-local-bitcoin Disable adding pools for local bitcoin RPC servers
  228. --no-longpoll Disable X-Long-Polling support
  229. --no-pool-redirect Ignore pool requests to redirect to another server
  230. --no-restart Do not attempt to restart devices that hang
  231. --no-stratum Disable Stratum detection
  232. --no-submit-stale Don't submit shares if they are detected as stale
  233. --no-unicode Don't use Unicode characters in TUI
  234. --noncelog <arg> Create log of all nonces found
  235. --pass|-p <arg> Password for bitcoin JSON-RPC server
  236. --per-device-stats Force verbose mode and output per-device statistics
  237. --pool-goal <arg> Named goal for the previous-defined pool
  238. --pool-priority <arg> Priority for just the previous-defined pool
  239. --pool-proxy|-x Proxy URI to use for connecting to just the previous-defined pool
  240. --protocol-dump|-P Verbose dump of protocol-level activities
  241. --queue|-Q <arg> Minimum number of work items to have queued (0 - 10) (default: 1)
  242. --quiet|-q Disable logging output, display status and errors
  243. --quit-summary <arg> Summary printed when you quit: none/devs/procs/detailed
  244. --quota|-U <arg> quota;URL combination for server with load-balance strategy quotas
  245. --real-quiet Disable all output
  246. --request-diff <arg> Request a specific difficulty from pools (default: 1.0)
  247. --retries <arg> Number of times to retry failed submissions before giving up (-1 means never) (default: -1)
  248. --rotate <arg> Change multipool strategy from failover to regularly rotate at N minutes (default: 0)
  249. --round-robin Change multipool strategy from failover to round robin on failure
  250. --scan|-S <arg> Configure how to scan for mining devices
  251. --scan-time <arg> Upper bound on time spent scanning current work, in seconds (default: 60)
  252. --sched-start <arg> Set a time of day in HH:MM to start mining (a once off without a stop time)
  253. --sched-stop <arg> Set a time of day in HH:MM to stop mining (will quit without a start time)
  254. --scrypt Use the scrypt algorithm for mining (non-bitcoin)
  255. --set-device|--set <arg> Set default parameters on devices; eg, NFY:osc6_bits=50
  256. --setuid <arg> Username of an unprivileged user to run as
  257. --sharelog <arg> Append share log to file
  258. --shares <arg> Quit after mining 2^32 * N hashes worth of shares (default: unlimited)
  259. --show-processors Show per processor statistics in summary
  260. --skip-security-checks <arg> Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)
  261. --socks-proxy <arg> Set socks proxy (host:port) for all pools without a proxy specified
  262. --stratum-port <arg> Port number to listen on for stratum miners (-1 means disabled) (default: -1)
  263. --submit-threads Minimum number of concurrent share submissions (default: 64)
  264. --syslog Use system log for output messages (default: standard error)
  265. --temp-hysteresis <arg> Set how much the temperature can fluctuate outside limits when automanaging speeds (default: 3)
  266. --text-only|-T Disable ncurses formatted screen output
  267. --unicode Use Unicode characters in TUI
  268. --url|-o <arg> URL for bitcoin JSON-RPC server
  269. --user|-u <arg> Username for bitcoin JSON-RPC server
  270. --verbose Log verbose output to stderr as well as status output
  271. --weighed-stats Display statistics weighed to difficulty 1
  272. --userpass|-O <arg> Username:Password pair for bitcoin JSON-RPC server
  273. --worktime Display extra work time debug information
  274. Options for command line only:
  275. --config|-c <arg> Load a JSON-format configuration file
  276. See example.conf for an example configuration.
  277. --no-default-config Inhibit loading default config file
  278. --default-config Always load the default config file
  279. --help|-h Print this message
  280. --version|-V Display version and exit
  281. GPU only options:
  282. --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)
  283. --gpu-platform <arg> Select OpenCL platform ID to use for GPU mining
  284. --gpu-reorder Attempt to reorder GPU devices according to PCI Bus ID
  285. --no-adl Disable the ATI display library used for monitoring and setting GPU parameters
  286. GPU mining is disabled by default for SHA256d if you have any dedicated mining
  287. devices, but can be enabled explicitly specifying the -S opencl:auto option.
  288. See README.GPU for more information regarding GPU mining.
  289. See README.scrypt for more information regarding (non-bitcoin) scrypt mining.
  290. To use ASICs or FPGAs, you will need to be sure the user BFGMiner is running as
  291. has appropriate permissions. This varies by operating system.
  292. On Linux, with BFGMiner's udev rules: sudo usermod <username> -a -G video
  293. Note that on GNU/Linux systems, you will usually need to login again before
  294. group changes take effect.
  295. By default, BFGMiner will scan for autodetected devices. If you want to prevent
  296. BFGMiner from doing this, you can use "-S noauto". If you want to probe all
  297. serial ports, you can use "-S all"; note that this may write data to non-mining
  298. devices which may then behave in unexpected ways!
  299. On Linux, <arg> is usually of the format /dev/ttyUSBn
  300. On Mac OS X, <arg> is usually of the format /dev/cu.usb*
  301. On Windows, <arg> is usually of the format \\.\COMn
  302. (where n = the correct device number for the device)
  303. The official supplied binaries are compiled with support for all ASICs/FPGAs.
  304. To force the code to only attempt detection with a specific driver,
  305. prepend the argument with the driver name followed by an "at" symbol.
  306. For example, "icarus@/dev/ttyUSB0" or "bitforce@\\.\COM5"
  307. or using the short name: "ica@/dev/ttyUSB0" or "bfl@\\.\COM5"
  308. Some FPGAs do not have non-volatile storage for their bitstreams and must be
  309. programmed every power cycle, including first use. To use these devices, you
  310. must download the proper bitstream from the vendor's website and copy it to the
  311. "bitstreams" directory into your BFGMiner application directory.
  312. See README.ASIC and README.FPGA for more information regarding these.
  313. See README.CPU for information regarding CPU mining.
  314. ---
  315. WHILE RUNNING:
  316. The following options are available while running with a single keypress:
  317. [M]anage devices [P]ool management [S]ettings [D]isplay options [H]elp [Q]uit
  318. M gives you something like:
  319. Select processor to manage using up/down arrow keys
  320. BFL 0a: 78.0C | 3.64/ 3.70/ 2.91Gh/s | A:46 R:0+0(none) HW: 2/none
  321. BitFORCE SHA256 SC from Butterfly Labs
  322. Serial: FTWN6T67
  323. [D]isable
  324. Or press Enter when done
  325. P gives you:
  326. Current pool management strategy: Failover
  327. [F]ailover only disabled
  328. [A]dd pool [R]emove pool [D]isable pool [E]nable pool
  329. [C]hange management strategy [S]witch pool [I]nformation
  330. S gives you:
  331. [L]ongpoll: On
  332. [Q]ueue: 1
  333. [S]cantime: 60
  334. [E]xpiry: 120
  335. [R]etries: -1
  336. [W]rite config file
  337. [B]FGMiner restart
  338. D gives you:
  339. [N]ormal [C]lear [S]ilent mode (disable all output)
  340. [D]ebug:off
  341. [P]er-device:off
  342. [Q]uiet:off
  343. [V]erbose:off
  344. [R]PC debug:off
  345. [W]orkTime details:off
  346. co[M]pact: off
  347. [L]og interval:5
  348. Q quits the application.
  349. The running log shows output similar to that below:
  350. [2013-02-13 00:26:30] Accepted 1758e8df BFL 0 pool 0 Diff 10/1
  351. [2013-02-13 00:26:32] Accepted 1d9a2199 MMQ 0a pool 0 Diff 8/1
  352. [2013-02-13 00:26:33] Accepted b1304924 ZTX 0 pool 0 Diff 1/1
  353. [2013-02-13 00:26:33] Accepted c3ad22f4 XBS 0b pool 0 Diff 1/1
  354. The 8 byte hex value are the 2nd set of 32 bits from the share submitted to the
  355. pool. The 2 diff values are the actual difficulty target that share reached
  356. followed by the difficulty target the pool is currently asking for.
  357. ---
  358. Also many issues and FAQs are covered in the forum threads
  359. dedicated to this program,
  360. https://bitcointalk.org/?topic=78192
  361. https://bitcointalk.org/?topic=168174
  362. If you are mining on a single pool, the pool display shows:
  363. Pool 0: ...s.m.eligius.st Diff:16 +Strtm LU:[03:26:16] User:1QATWksNFGeUJCWBrN4g6hGM178Lovm7Wh
  364. This tells you which pool you're using, as well as its current share difficulty,
  365. protocol, and last explicit work update. If BFGMiner has a working block
  366. notification source, the protocol will be prefixed by a plus sign. If not, a
  367. minus sign.
  368. If you are mining on multiple pools at once, the pool display instead shows:
  369. Pools: 2 (0,1) Diff:4-16 + LU:[03:25:30]
  370. You get the total number of working pools, the pool numbers for each of those,
  371. the range of current share difficulties, whether block notification is working
  372. (plus/minus), and the oldest explicit work update currently being used for new
  373. work.
  374. The block display shows:
  375. Block #217364: ...1b89f8d3 Diff:7.67M (54.93T) Started: [17:17:22] I:12.99mBTC/hr
  376. This shows a short stretch of the next block's height, the current block,
  377. difficulty (including the network hashrate that difficulty represents), when the
  378. search for the new block started, and finally expected Income, calculated by
  379. actual shares submitted in 100% PPS value (assumes Bitcoin, does not account for
  380. altcoin conversions!).
  381. The BFGMiner status line shows:
  382. ST:1 F:0 NB:1 AS:0 BW:[ 75/241 B/s] E:2.42 BS:2.71k
  383. ST is STaged work items (ready to use).
  384. F is network Failure occasions (server down or slow to provide work)
  385. NB is New Blocks detected on the network
  386. AS is Active Submissions (shares in the process of submitting)
  387. BW is BandWidth usage on the network (received/sent)
  388. E is Efficiency defined as number of shares accepted (multiplied by their
  389. difficulty) per 2 KB of bandwidth
  390. BS is the all time Best Share difficulty you've found
  391. The totals line shows the following:
  392. 6/32 75.0C | 171.3/170.8/171.2Gh/s | A:729 R:8+0(.01%) HW:0/.81%
  393. Each column is as follows:
  394. The number of devices and processors currently mining
  395. Hottest temperature reported by any processor
  396. 20 second exponentially decaying average hash rate (configurable with --log
  397. option)
  398. An all time average hash rate
  399. An all time average hash rate based on actual nonces found, adjusted for pool
  400. reject and stale rate
  401. The number of Accepted shares
  402. The number of Rejected shares and stale shares discarded (never submitted),
  403. and the percentage these are of total found.
  404. The number of HardWare errors, and percentage invalid of nonces returned
  405. Each device shows:
  406. BFL 2: 74.0C | 51.97/58.90/57.17Gh/s | A:847 R:15+0(.54%) HW:496/.91%
  407. Columns are the same as in the totals line.
  408. ---
  409. MULTIPOOL
  410. FAILOVER STRATEGIES WITH MULTIPOOL:
  411. A number of different strategies for dealing with multipool setups are
  412. available. Each has their advantages and disadvantages so multiple strategies
  413. are available by user choice, as per the following list:
  414. FAILOVER:
  415. The default strategy is failover. This means that if you input a number of
  416. pools, it will try to use them as a priority list, moving away from the 1st
  417. to the 2nd, 2nd to 3rd and so on. If any of the earlier pools recover, it will
  418. move back to the higher priority ones.
  419. ROUND ROBIN:
  420. This strategy only moves from one pool to the next when the current one falls
  421. idle and makes no attempt to move otherwise.
  422. ROTATE:
  423. This strategy moves at user-defined intervals from one active pool to the next,
  424. skipping pools that are idle.
  425. LOAD BALANCE:
  426. This strategy sends work to all the pools on a quota basis. By default, all
  427. pools are allocated equal quotas unless specified with --quota. This
  428. apportioning of work is based on work handed out, not shares returned so is
  429. independent of difficulty targets or rejected shares. While a pool is disabled
  430. or dead, its quota is dropped until it is re-enabled. Quotas are forward
  431. looking, so if the quota is changed on the fly, it only affects future work.
  432. If all pools are set to zero quota or all pools with quota are dead, it will
  433. fall back to a failover mode. See quota below for more information.
  434. The failover-only flag has special meaning in combination with load-balance
  435. mode and it will distribute quota back to priority pool 0 from any pools that
  436. are unable to provide work for any reason so as to maintain quota ratios
  437. between the rest of the pools.
  438. BALANCE:
  439. This strategy monitors the amount of difficulty 1 shares solved for each pool
  440. and uses it as a basis for trying to doing the same amount of work for each
  441. pool.
  442. ---
  443. SOLO MINING
  444. BFGMiner supports solo mining with any GBT-compatible bitcoin node (such as
  445. bitcoind). To use this mode, you need to specify the URL of your bitcoind node
  446. using the usual pool options (--url, --userpass, etc), and the --generate-to
  447. option to specify the Bitcoin address you wish to receive the block rewards
  448. mined. When you run Bitcoin Core on the same computer as your miner, the pool
  449. itself will be automatically configured for you (on the default goal). Please be
  450. aware that solo mining via GBT is at this time only supported for Bitcoin.
  451. IMPORTANT: If you are solo mining with more than one instance of BFGMiner (or
  452. any other software) per payout address, you must also specify data using the
  453. --coinbase-sig option to ensure each miner is working on unique work. Note
  454. that this data will be publicly seen if your miner finds a block using any
  455. GBT-enabled pool, even when not solo mining (such as failover).
  456. If your bitcoin node does not support longpolling (for example, bitcoind 0.8.x),
  457. you should consider setting up a failover pool to provide you with block
  458. notifications. Note that solo mining does not use shares, so BFGMiner's adjusted
  459. hashrate (third column) may suddenly drop to zero if a block you submit is
  460. rejected; this does not indicate that it has stopped mining.
  461. Example solo mining usage:
  462. bfgminer -o http://localhost:8332 -u username -p password \
  463. --generate-to 1QATWksNFGeUJCWBrN4g6hGM178Lovm7Wh \
  464. --coinbase-sig "rig1: This is Joe's block!"
  465. If you want to solo mine on multiple GBT-compatible Bitcoin blockchains, you can
  466. specify --generate-to multiple times with a goal name prefix followed by a
  467. colon. Note that at this time, the coinbase sig is always shared across all
  468. goals/pools.
  469. Example multi-blockchain solo mining usage:
  470. bfgminer -o http://localhost:8332 -u username -p password \
  471. --generate-to 1QATWksNFGeUJCWBrN4g6hGM178Lovm7Wh \
  472. -o http://localhost:7221 -u user2 -p password --pool-goal mychain \
  473. --generate-to mychain:1QATWksNFGeUJCWBrN4g6hGM178Lovm7Wh \
  474. --coinbase-sig "rig1: This is Joe's block!"
  475. ---
  476. QUOTAS
  477. The load-balance multipool strategy works off a quota based scheduler. The
  478. quotas handed out by default are equal, but the user is allowed to specify any
  479. arbitrary ratio of quotas. For example, if all the quota values add up to 100,
  480. each quota value will be a percentage, but if 2 pools are specified and pool0
  481. is given a quota of 1 and pool1 is given a quota of 9, pool0 will get 10% of
  482. the work and pool1 will get 90%. Quotas can be changed on the fly with RPC,
  483. and do not act retrospectively. Setting a quota to zero will effectively
  484. disable that pool unless all other pools are disabled or dead. In that
  485. scenario, load-balance falls back to regular failover priority-based strategy.
  486. While a pool is dead, it loses its quota and no attempt is made to catch up
  487. when it comes back to life.
  488. To specify quotas on the command line, pools should be specified with a
  489. semicolon separated --quota(or -U) entry instead of --url. Pools specified with
  490. --url are given a nominal quota value of 1 and entries can be mixed.
  491. For example:
  492. --url poolA:portA -u usernameA -p passA --quota "2;poolB:portB" -u usernameB -p passB
  493. Will give poolA 1/3 of the work and poolB 2/3 of the work.
  494. Writing configuration files with quotas is likewise supported. To use the above
  495. quotas in a configuration file they would be specified thus:
  496. "pools" : [
  497. {
  498. "url" : "poolA:portA",
  499. "user" : "usernameA",
  500. "pass" : "passA"
  501. },
  502. {
  503. "quota" : "2;poolB:portB",
  504. "user" : "usernameB",
  505. "pass" : "passB"
  506. }
  507. ]
  508. ---
  509. LOGGING
  510. BFGMiner will log to stderr if it detects stderr is being redirected to a file.
  511. To enable logging simply add 2>logfile.txt to your command line and logfile.txt
  512. will contain the logged output at the log level you specify (normal, verbose,
  513. debug etc.)
  514. In other words if you would normally use:
  515. ./bfgminer -o xxx -u yyy -p zzz
  516. if you use
  517. ./bfgminer -o xxx -u yyy -p zzz 2>logfile.txt
  518. it will log to a file called logfile.txt and otherwise work the same.
  519. There is also the -m option on linux which will spawn a command of your choice
  520. and pipe the output directly to that command.
  521. The WorkTime details 'debug' option adds details on the end of each line
  522. displayed for Accepted or Rejected work done. An example would be:
  523. <-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
  524. The first 2 hex codes are the previous block hash, the rest are reported in
  525. seconds unless stated otherwise:
  526. The previous hash is followed by the getwork mode used M:X where X is one of
  527. P:Pool, T:Test Pool, L:LP or B:Benchmark,
  528. then D:d.ddd is the difficulty required to get a share from the work,
  529. then G:hh:mm:ss:n.nnn, which is when the getwork or LP was sent to the pool and
  530. the n.nnn is how long it took to reply,
  531. followed by 'O' on its own if it is an original getwork, or 'C:n.nnn' if it was
  532. a clone with n.nnn stating how long after the work was recieved that it was
  533. cloned, (m.mmm) is how long from when the original work was received until work
  534. started,
  535. W:n.nnn is how long the work took to process until it was ready to submit,
  536. (m.mmm) is how long from ready to submit to actually doing the submit, this is
  537. usually 0.000 unless there was a problem with submitting the work,
  538. S:n.nnn is how long it took to submit the completed work and await the reply,
  539. R:hh:mm:ss is the actual time the work submit reply was received
  540. If you start BFGMiner with the --sharelog option, you can get detailed
  541. information for each share found. The argument to the option may be "-" for
  542. standard output (not advisable with the ncurses UI), any valid positive number
  543. for that file descriptor, or a filename.
  544. To log share data to a file named "share.log", you can use either:
  545. ./bfgminer --sharelog 50 -o xxx -u yyy -p zzz 50>share.log
  546. ./bfgminer --sharelog share.log -o xxx -u yyy -p zzz
  547. For every share found, data will be logged in a CSV (Comma Separated Value)
  548. format:
  549. timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  550. For example (this is wrapped, but it's all on one line for real):
  551. 1335313090,reject,
  552. ffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000,
  553. http://localhost:8337,GPU0,0,
  554. 6f983c918f3299b58febf95ec4d0c7094ed634bc13754553ec34fc3800000000,
  555. 00000001a0980aff4ce4a96d53f4b89a2d5f0e765c978640fe24372a000001c5
  556. 000000004a4366808f81d44f26df3d69d7dc4b3473385930462d9ab707b50498
  557. f681634a4f1f63d01a0cd43fb338000000000080000000000000000000000000
  558. 0000000000000000000000000000000000000000000000000000000080020000
  559. ---
  560. RPC API
  561. For RPC API details see the README.RPC file
  562. ---
  563. FAQ
  564. Q: Why can't BFGMiner find lib<something> even after I installed it from source
  565. code?
  566. A: On UNIX-like operating systems, you often need to run one or more commands to
  567. reload library caches, such as "ldconfig" or similar. A couple of systems (such
  568. as Fedora) ship with /usr/local/lib missing from their library search path. In
  569. this case, you can usually add it like this:
  570. echo /usr/local/lib >/etc/ld.so.conf.d/local.conf
  571. Please note that if your libraries installed into lib64 instead of lib, you
  572. should use that in the ld.so config file above instead.
  573. Q: BFGMiner segfaults when I change my shell window size.
  574. A: Older versions of libncurses have a bug to do with refreshing a window
  575. after a size change. Upgrading to a new version of curses will fix it.
  576. Q: I have multiple USB stick devices but I can't get them all to work at once?
  577. A: Very few USB hubs deliver the promised power required to run as many devices
  578. as they fit if all of them draw power from USB. Devices may use up to 2.5 watts
  579. of power (or 4.5 watts for USB 3 devices), and mining USB sticks usually need it
  580. all. You can estimate how much power your USB hub can provide by multiplying its
  581. power supply's output amps by volts (so, if it says 12V 2.5A, you have 12*2.5=
  582. 30 watts).
  583. Q: I've confirmed my USB miners are powered sufficiently, but BFGMiner still
  584. is having problems running more than a few at once?
  585. A: Some USB hosts cannot deal with polling as often as miners may need for quick
  586. delivery of shares. On Linux, you can request putting VCOM devices in "high
  587. latency" mode (or rather, disabling the default "low latency" mode) using the
  588. setserial command:
  589. setserial /dev/ttyUSB0 '^low_latency'
  590. You can further tweak device latency by finding the latency_timer attribute in
  591. sysfs.
  592. Q: I've plugged my devices into my USB hub but nothing shows up?
  593. A: RPis and Windows have incomplete or non-standard USB3 support so they may
  594. never work. It may be possible to get a USB3 hub to work by plugging it into a
  595. USB2 hub.
  596. Q: Can I mine on servers from different networks (eg smartcoin and bitcoin) at
  597. the same time?
  598. A: No, BFGMiner keeps a database of the block it's working on to ensure it does
  599. not work on stale blocks, and having different blocks from two networks would
  600. make it invalidate the work from each other.
  601. Q: Can I configure BFGMiner to mine with different login credentials or pools
  602. for each separate device?
  603. A: No such feature has been implemented to support this.
  604. Q: Can I put multiple pools in the config file?
  605. A: Yes, check the example.conf file. Alternatively, set up everything either on
  606. the command line or via the menu after startup and choose [S]ettings->[W]rite
  607. config file and the file will be loaded one each startup.
  608. Q: The build fails with gcc is unable to build a binary.
  609. A: Remove the "-march=native" component of your CFLAGS as your version of GCC
  610. does not support it.
  611. Q: Can you implement feature X?
  612. A: I can, but time is limited, and people who donate are more likely to get
  613. their feature requests implemented.
  614. Q: Work keeps going to my backup pool even though my primary pool hasn't
  615. failed?
  616. A: BFGMiner checks for conditions where the primary pool is lagging and will
  617. pass some work to the backup servers under those conditions. The reason for
  618. doing this is to try its absolute best to keep the devices working on something
  619. useful and not risk idle periods. You can disable this behaviour with the
  620. option --failover-only.
  621. Q: Is this a virus?
  622. A: As BFGMiner is being packaged with other trojan scripts, some antivirus
  623. software is falsely accusing bfgminer.exe as being the actual virus, rather than
  624. whatever it is being packaged with. If you installed BFGMiner yourself from a
  625. reputable source then you do not have a virus on your computer. Complain to your
  626. antivirus software company. They seem to be flagging even source code from
  627. BFGMiner as malicious now, even though text source files can't do anything by
  628. themselves.
  629. Q: Can you modify the display to include more of one thing in the output and
  630. less of another, or can you change the quiet mode or can you add yet another
  631. output mode?
  632. A: Everyone will always have their own view of what is important to monitor.
  633. The defaults are very sane and I have very little interest in changing this
  634. any further.
  635. Q: Why is my efficiency above/below 1.00?
  636. A: Efficiency simply means how many shares you return for the amount of
  637. bandwidth used. It does not correlate with efficient use of your hardware, and
  638. is a measure of a combination of hardware speed, block luck, pool design and
  639. many other factors.
  640. Q: What are the best parameters to pass for X pool/hardware/device.
  641. A: Virtually always, the DEFAULT parameters give the best results. Most user
  642. defined settings lead to worse performance.
  643. Q: What happened to CPU mining?
  644. A: See README.CPU for more information.
  645. Q: Is there a GUI version?
  646. A: Yes, there are a number of GUI interfaces for BFGMiner:
  647. Name Website Operating system(s)
  648. ---- ------- -------------------
  649. EasyMiner http://www.butterflylabs.com/drivers/ Android, Linux, Windows
  650. MacMiner http://fabulouspanda.co.uk/macminer/ Mac
  651. MultiMiner http://www.multiminerapp.com/ Linux, Mac, Windows (.NET)
  652. Q: Is there a "bare-metal" version?
  653. A: Yes, there are a few dedicated mining operating systems built on BFGMiner:
  654. Name Website Hardware
  655. ---- ------- --------
  656. Controla http://hashra.com/support Raspberry Pi
  657. MinePeon http://mineforeman.com/minepeon/ BeagleBone Black, Raspberry Pi
  658. Minera http://getminera.com/ Raspberry Pi
  659. PiMP http://getpimp.org/ x86
  660. Q: I'm having an issue. What debugging information should I provide?
  661. A: Start BFGMiner with your regular commands and add -D -T --verbose and provide
  662. the full startup output and a summary of your hardware, operating system, and if
  663. applicable, ATI driver version and ATI stream version.
  664. Q: Why isn't BFGMiner performing well or working on my Raspberry Pi?
  665. A: Raspberry Pis have hardware defect(s) which affect USB devices to varying
  666. degrees. Some devices will never be able to work on them, some work fine, and
  667. some require hacks to workaround the problem. One common workaround is to add
  668. the dwc_otg.speed=1 parameter to /boot/cmdline.txt. Note that this will slow
  669. down the USB bus to USB 1.1 speeds, which also affects network bandwidth since
  670. the Raspberry Pi uses a USB network interface. You may wish to consider
  671. upgrading to a BeagleBone or UDOO controller.
  672. Q: Can I mine with BFGMiner on a Mac?
  673. A: BFGMiner will compile on OS X, but the performance of GPU mining is
  674. compromised due to the OpenCL implementation on OS X, there is no temperature or
  675. fanspeed monitoring and the cooling design of most Macs, despite having
  676. powerful GPUs, will usually not cope with constant usage leading to a high risk
  677. of thermal damage. It is highly recommended not to mine on a Mac unless it is
  678. with an external USB device.
  679. Q: My network gets slower and slower and then dies for a minute?
  680. A; Try the --net-delay option if you are on a getwork or GBT server.
  681. Q: How do I tune for P2Pool?
  682. A: P2Pool has very rapid expiration of work and new blocks, it is suggested you
  683. decrease intensity by 1 from your optimal value, and decrease GPU threads to 1
  684. with --set-device OCL:threads=1. It is also recommended to use --failover-only
  685. since the work is effectively like a different block chain. If mining with a
  686. Mini Rig, it is worth adding the --bfl-range option.
  687. Q: I run PHP on windows to access the API with the example miner.php. Why does
  688. it fail when php is installed properly but I only get errors about Sockets not
  689. working in the logs?
  690. A: Please check http://us.php.net/manual/en/sockets.installation.php
  691. Q: What is a PGA?
  692. A: At the moment, BFGMiner supports 5 FPGAs: BitForce, Icarus, ModMiner, X6500,
  693. and ZTEX.
  694. They are Field-Programmable Gate Arrays that have been programmed to do Bitcoin
  695. mining. Since the acronym needs to be only 3 characters, the "Field-" part has
  696. been skipped. "PGA" is also used for devices built with Application-Specific
  697. Integrated Circuits (ASICs).
  698. Q: What is an ASIC?
  699. A: They are Application Specific Integrated Circuit devices and provide the
  700. highest performance per unit power due to being dedicated to only one purpose.
  701. Q: How do I get my BFL/Icarus/Lancelot/Cairnsmore device to auto-recognise?
  702. A: On Linux, if the /dev/ttyUSB* devices don't automatically appear, the only
  703. thing that needs to be done is to load the driver for them:
  704. BitForce: sudo modprobe ftdi_sio vendor=0x0403 product=0x6014
  705. Erupter: sudo modprobe cp210x vendor=0x10c4 product=0xea60
  706. Icarus: sudo modprobe pl2303 vendor=0x067b product=0x0230
  707. Lancelot: sudo modprobe ftdi_sio vendor=0x0403 product=0x6001
  708. Cairnsmore: sudo modprobe ftdi_sio vendor=0x0403 product=0x8350
  709. On some systems you must manally install the driver required for the device.
  710. OpenWrt drivers (install with opkg):
  711. FTDI: kmod-usb-serial-ftdi
  712. Erupter: kmod-usb-serial-cp210x
  713. Icarus: kmod-usb-serial-pl2303
  714. Windows drivers:
  715. FTDI: http://www.ftdichip.com/Drivers/VCP.htm
  716. Erupter: http://www.silabs.com/products/mcu/pages/usbtouartbridgevcpdrivers.aspx
  717. Icarus: http://prolificusa.com/pl-2303hx-drivers/
  718. Q: I ran cgminer, and now BFGMiner doesn't work!
  719. A: cgminer has its own non-standard implementations of the drivers for most USB
  720. devices, and requires you to replace the official drivers with WinUSB on Windows
  721. (usually using Zadig). Before you can use BFGMiner, you will need to restore the
  722. original driver. Uninstalling the device (and WinUSB driver) from Device Manager
  723. and re-plugging it will usually trigger driver re-installation to the default
  724. drivers.
  725. Q: On Linux I can see the /dev/ttyUSB* devices, but BFGMiner can't mine on them?
  726. A: Make sure you have the required privileges to access the /dev/ttyUSB*
  727. devices:
  728. sudo ls -las /dev/ttyUSB*
  729. will give output like:
  730. 0 crw-rw---- 1 root video 188, 0 2012-09-11 13:49 /dev/ttyUSB0
  731. This means your account must have the group 'video' or root privileges.
  732. To permanently give your account the 'video' group:
  733. sudo usermod -G video -a `whoami`
  734. Then logout and back in again.
  735. Q: Can I mine scrypt with FPGAs or ASICs?
  736. A: BFGMiner supports scrypt mining with GridSeed GC3355 ASICs, using either
  737. DualMiner USB sticks or the 5-chip orb.
  738. Q: Why does BFGMiner show a fractional difficulty when mining scrypt?
  739. A: BFGMiner consistently uses pdiff measurement for difficulty everywhere,
  740. rather than other measurements that may exist. For scrypt, pdiff 1 is very
  741. difficult, and higher get exponentially harder. It is unlikely you will want to
  742. use pdiff 1+ with scrypt any time soon.
  743. Q: What is stratum and how do I use it?
  744. A: Stratum is a protocol designed to reduce resources for mining pools at the
  745. cost of keeping the miner in the dark and blindly transferring his mining
  746. authority to the pool. It is a return to the problems of the old centralized
  747. "getwork" protocol, but capable of scaling to hardware of any speed like the
  748. standard GBT protocol. If a pool uses stratum instead of GBT, BFGMiner will
  749. automatically detect it and switch to the support as advertised if it can.
  750. Stratum uses direct TCP connections to the pool and thus it will NOT currently
  751. work through a http proxy but will work via a socks proxy if you need to use
  752. one. If you input the stratum port directly into your configuration, or use the
  753. special prefix "stratum+tcp://" instead of "http://", BFGMiner will ONLY try to
  754. use stratum protocol mining.
  755. Q: Why don't the statistics add up: Accepted, Rejected, Stale, Hardware Errors,
  756. Diff1 Work, etc. when mining greater than 1 difficulty shares?
  757. A: As an example, if you look at 'Difficulty Accepted' in the RPC API, the number
  758. of difficulty shares accepted does not usually exactly equal the amount of work
  759. done to find them. If you are mining at 8 difficulty, then you would expect on
  760. average to find one 8 difficulty share, per 8 single difficulty shares found.
  761. However, the number is actually random and converges over time as it is an
  762. average, not an exact value, thus you may find more or less than the expected
  763. average.
  764. ---
  765. This code is provided entirely free of charge by the programmer in his spare
  766. time so donations would be greatly appreciated. Please consider donating to the
  767. address below.
  768. Luke-Jr <luke-jr+bfgminer@utopios.org>
  769. 1QATWksNFGeUJCWBrN4g6hGM178Lovm7Wh