README 39 KB

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