BZminer майнер. Скачать Бзмайнер
Release v100.04b1 BETA of bzminer
All feedback is welcome ;)
- New algorithm: KawPow on NVIDIA, AMD and Apple GPUs - Ravencoin, Neurai, Neoxa, Meowcoin and Clore
-a rvn,xna,neoxa,meowcoinandclorename the coin as they did in bzminer 1.x, and the dev fee is paid on that chain- One
start_kawpowscript with a block per coin, instead of one script per coin name - Pearl is about five times faster on Turing (RTX 20-series, GTX 16-series)
- Pearl's dev fee is now 1%, down from 2%
- Pearl is faster on Ada (RTX 40-series)
- Pearl is faster on 24 GB Ampere cards (RTX 3090, RTX 3080 Ti)
- Pearl draws less power on the rest of Ampere (RTX 30-series)
- Pearl is faster on Blackwell, and now fits 8 GB Blackwell cards
- Xelis is faster on Ampere (RTX 30-series)
- Xelis is faster on CPUs without AVX-512, by about 5%
- Warthog no longer submits duplicate shares around the dev-fee switch
- Shares no longer get stuck on "pending" when the pool changes
- Ergo mines on WoolyPooly again
- Dev-fee connection failures no longer stall the user's pool or count as reconnects
- A dev-fee destination that keeps failing is backed off and dropped, and the fee is still paid in full
- Dev-fee shares stay out of your share table
- An algorithm this build does not have is now an error, and the miner runs in monitoring mode instead of quietly mining something else
- New jobs are logged at info, so the default log shows the pool is still sending work
- Job, difficulty and pool lines all say which algorithm they are for
- Overclocking works on 50-series cards again
- A core clock lock now holds when an offset is applied with it
cpu_threadsgoverns every CPU thread the miner starts, and they are all pinned- OpenCL is only loaded if something can use it
- Memory clock locks are checked against the card, and no longer report a lock that landed as failed
- New hotkeys for the memory clock:
k/Klocks it,m/Moffsets it - New hotkeys for the board power limit:
w/W(NVIDIA) - The tuning hotkeys act on one card at a time, and every screen shows which one
- New
tbscolumn: the real, measured time between shares - Every mining box now shows block height, difficulty, estimated time between shares and pool latency
- Those four have their own column, a line each, instead of a row apiece under the table (warthog keeps them in the status column)
[h]is the first hotkey on the row, and pressing it again closes the help- New hotkey
[u]: the pool details - url, wallet, worker and password - press again to hide - The top rule counts pool reconnects
- The full hotkey legend is on every screen, and
hexplains each key - The console draws correctly at any terminal size
- The mouse wheel scrolls again, and text selection still works
[i]/[I]steps the refresh rate through round numbers- Log lines say what level they are, and are coloured by it
- The log file holds the device and pool tables, not just the log lines
- New
--logfile, and each log file can append, overwrite or timestamp - The monitor screen has its own log:
--monitor-logfile - The file follows the console's log level live unless
logfile_levelpins it --log-level networkshows frames for every algorithm, each exactly once- Network logs elide long values and binary runs in place instead of dropping the frame
- Xelis records how each card was set up at startup
- New: DRAM timings, on the device page, in the web dashboard and in
--ram-info(AMD platforms) - GPU memory timings are read on Linux too, and cards that cannot report them no longer show a number
- The CPU's
archcell says the architecture, not the core count - The device page shows more, hides less, and no longer repeats its headings
- Linux shows every GPU sensor the driver publishes, not one of each kind
- CPU fans are detected on Linux boards the kernel has no sensor driver for
- The web API carries
height,share_workand the reconnect count, and/statusfills inblock - Quieter logs: kernel and prover internals are off unless you pass
--internal-log - Fixed: per-thread CPU usage read 0% on Linux
- Fixed: AMD CPUs reported temperatures for CCDs that are not fitted
- Fixed: the share log kept naming the CPU thread count from startup after
[t]had changed it
Mines Ergo, Ravencoin, Neurai, Neoxa, Meowcoin, Clore, Pearl, VERUS, Warthog and XELIS, and ships sha256d as the open-source SDK example.
Downloads
| file | size | SHA-256 |
|---|---|---|
bzminer_v100.04b1_windows.zip | 14.2 MB | e523c0efea35bde782d1c4876ead8f4de29f46bf93ce902dd7ea6c659d65e132 |
bzminer_v100.04b1_linux.tar.gz | 15.3 MB | 946519272868de4a5525617b99ae979cdb0ff0512ddf46dbde9df11508e98ca8 |
bzminer_v100.04b1_macos.tar.gz | 14.7 MB | aa5613212434ac226eba2674402255a34626337d9f7bf431142bb1a1112d371c |
Verify before running:
# Linux / macOS
sha256sum -c <<< "<hash> <file>"
# Windows (PowerShell)
Get-FileHash .\<file> -Algorithm SHA256A checksum only proves the file is the one that was published — always download from the official release page.
Getting started
- Unpack the archive for your platform.
- Open a
start_<algo>script and replace the placeholder wallet with your own. - Run it, then open http://127.0.0.1:4014/ for the dashboard.
readme.txt inside each archive has the full quick start, the common options, and
the hardware-safety settings. config.txt is a commented copy of every setting,
generated from the shipped binary, so it always matches the build you have.
Updating on a mining OS
Both fetch this exact version, so they can be pasted as-is - the version below is already the one on this page.
MMPOS
Put this in miner profile → advanced → "Initiate command prior to miner launch".
It downloads once; on every later launch the if sees the archive already in
/tmp and exits immediately, so it costs nothing per restart.
export version="v100.04b1"
if [ -f "/tmp/bzminer_${version}_linux.tar.gz" ]; then
exit 0
else
cd /tmp; wget https://github.com/bzminer/bzminer/releases/download/${version}/bzminer_${version}_linux.tar.gz; tar -xvf bzminer_${version}_linux.tar.gz; sudo cp -adpR bzminer_${version}_linux/bzminer /opt/mmp/miners/bzminer/
fiHive OS
Run it over SSH or in the Hive web shell.
You do not need to know which bzminer version is installed. Hive keeps one
folder per version under /hive/miners/bzminer/, and the flight sheet decides
which one runs - so this replaces the binary in every bzminer folder it finds
and whichever one your flight sheet points at gets the new build. That is the
whole reason it does not name a version directory.
version=v100.04b1
cd /tmp && wget -q https://github.com/bzminer/bzminer/releases/download/${version}/bzminer_${version}_linux.tar.gz && tar -xf bzminer_${version}_linux.tar.gz || { echo "download failed"; exit 1; }
miner stop
n=0; for d in /hive/miners/bzminer/*/; do [ -d "$d" ] && cp -f "bzminer_${version}_linux/bzminer" "$d" && n=$((n+1)); done
[ "$n" -gt 0 ] && echo "updated $n bzminer folder(s)" || echo "no /hive/miners/bzminer/<version>/ found - install bzminer from the flight sheet first"
miner startIt prints how many folders it updated. 0 means bzminer has never been installed
from a flight sheet on that rig, so there is nothing to replace yet.
Algorithms in this build
| algorithm | coin | dev fee | notes |
|---|---|---|---|
ergo | Ergo | 1% | Autolykos v2. GPU only, and memory-hard: it builds a table of N 32-byte elements (about 2 GB) in VRAM, so a card needs the room for it. N grows with block height, and the table is rebuilt when it changes. Wallet addresses start with '9'. |
kawpow | Ravencoin (rvn)Neurai ( xna)Neoxa ( neoxa)Meowcoin ( meowcoin)Clore ( clore) | 1% | KawPow on NVIDIA CUDA, AMD OpenCL, and Apple Metal GPUs. NVIDIA specializes the three-block random program through the driver's PTX JIT, with precompiled cubins as its fallback; AMD uses offline-native gfx code objects; Apple Silicon uses a portable offline metallib. No CUDA toolkit, NVRTC, ROCm compiler, OpenCL C source, Metal source, or external GPU compiler is required on the mining rig; the AMD and Apple paths do no runtime compilation. Answers to kawpow and to each KawPow coin by name (rvn, xna, neoxa, meowcoin, clore), which is also what selects the dev-fee destination. A wallet address for the coin being mined, optionally followed by .worker. |
pearl | Pearl | 1% | a zk proof-of-work: each share is a STARK proof, so it is far heavier per hash than a normal algorithm. Also mines SOLO - point -p at your node's RPC URL instead of a pool. Wallet addresses start with 'prl1'. |
sha256d | — | none | The open-source SDK example: a full algorithm plugin (CPU+GPU, pool stratum, bench job source). Copy plugins/public/sha256d as a template for your own. |
verus | VERUS | 1% | VerusHash v2.2 CPU mining. A Verus R-address, optionally followed by .worker. |
warthog | Warthog | 2% | janushash - the GPU filters sha256t and the CPU runs verushash, on the same nonces. Needs BOTH a GPU and the CPU; one without the other finds nothing. Wallet addresses are 48 hex characters. |
xelis | XELIS | 1% | xelhash. Wallet addresses start with 'xel:'. |
Reporting problems
Please include: your OS, GPU model(s) and driver version, the algorithm and pool,
and the first ~40 lines of the log (it prints the build, the devices it found, and
what each backend reported). --list-metrics output helps for sensor issues.
Примеры .bat файлов Bzminer
bzminer.exe -a ethw -w WALLET_ADDRESS.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3096bzminer.exe -a etchash -w WALLET_ADDRESS.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:35000bzminer.exe -a kaspa -w WALLET_ADDRESS.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3112bzminer.exe -a ergo -w WALLET_ADDRESS.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3100bzminer.exe -a nexa -w WALLET_ADDRESS.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3124bzminer.exe -a kawpow -w WALLET_ADDRESS.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:55555bzminer.exe -a meowcoin -w WALLET_ADDRESS.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3116bzminer.exe -a alph -w WALLET_ADDRESS.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3106bzminer.exe -a radiant -w WALLET_ADDRESS.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3122bzminer -a novo -p stratum+tcp://pool.woolypooly.com:3134 -w YOUR_WALLET.WORKER_NAME --nc 1
bzminer.exe -a ethw -w WALLET_ADDRESS_ETHW.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3096 --a2 alph --w2 WALLET_ADDRESS_ALPH.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3106bzminer -a etchash -w WALLET_ADDRESS_ETC.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:35000 --a2 alph --w2 WALLET_ADDRESS_ALPH.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3106bzminer -a ethw -w WALLET_ADDRESS_ETHW.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3096 --a2 alph --w2 WALLET_ADDRESS_ALPH.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3106 --a3 zil --w3 WALLET_ADDRESS_ZIL.WORKER_NAME --p3 zmp://ZIL_POOLbzminer -a ethash -w WALLET_ADDRESS_ETHF.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3114 --a2 alph --w2 WALLET_ADDRESS_ALPH.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3106 --a3 zil --w3 WALLET_ADDRESS_ZIL.WORKER_NAME --p3 zmp://ZIL_POOLbzminer -a etchash -w WALLET_ADDRESS_ETC.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:35000 --a2 alph --w2 WALLET_ADDRESS_ALPH.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3106 --a3 zil --w3 WALLET_ADDRESS_ZIL.WORKER_NAME --p3 zmp://ZIL_POOLbzminer -a ethw -w WALLET_ADDRESS_ETHW.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3096 --a2 kaspa --w2 WALLET_ADDRESS_KAS.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3112bzminer -a ethash -w WALLET_ADDRESS_ETHF.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3114 --a2 kaspa --w2 WALLET_ADDRESS_KAS.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3112bzminer -a etchash -w WALLET_ADDRESS_ETC.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:35000 --a2 kaspa --w2 WALLET_ADDRESS_KAS.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3112bzminer -a ethw -w WALLET_ADDRESS_ETHW.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3096 --a2 kaspa --w2 WALLET_ADDRESS_KAS.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3112 --a3 zil --w3 WALLET_ADDRESS_ZIL.WORKER_NAME --p3 zmp://ZIL_POOLbzminer -a ethash -w WALLET_ADDRESS_ETHF.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3114 --a2 kaspa --w2 WALLET_ADDRESS_KAS.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3112 --a3 zil --w3 WALLET_ADDRESS_ZIL.WORKER_NAME --p3 zmp://ZIL_POOLbzminer -a etchash -w WALLET_ADDRESS_ETC.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:35000 --a2 kaspa --w2 WALLET_ADDRESS_KAS.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3112 --a3 zil --w3 WALLET_ADDRESS_ZIL.WORKER_NAME --p3 zmp://ZIL_POOLbzminer -a ethw -w WALLET_ADDRESS_ETHW.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3096 --a2 radiant --w2 WALLET_ADDRESS_RXD.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3122bzminer -a ethash -w WALLET_ADDRESS_ETHF.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3114 --a2 radiant --w2 WALLET_ADDRESS_RXD.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3122bzminer -a etchash -w WALLET_ADDRESS_ETC.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:35000 --a2 radiant --w2 WALLET_ADDRESS_RXD.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3122bzminer -a ethw -w WALLET_ADDRESS_ETHW.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3096 --a2 radiant --w2 WALLET_ADDRESS_RXD.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3122 --a3 zil --w3 WALLET_ADDRESS_ZIL.WORKER_NAME --p3 zmp://ZIL_POOLbzminer -a ethash -w WALLET_ADDRESS_ETHF.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:3114 --a2 radiant --w2 WALLET_ADDRESS_RXD.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3122 --a3 zil --w3 WALLET_ADDRESS_ZIL.WORKER_NAME --p3 zmp://ZIL_POOLbzminer -a etchash -w WALLET_ADDRESS_ETC.WORKER_NAME -p stratum+tcp://pool.woolypooly.com:35000 --a2 radiant --w2 WALLET_ADDRESS_RXD.WORKER_NAME --p2 stratum+tcp://pool.woolypooly.com:3122 --a3 zil --w3 WALLET_ADDRESS_ZIL.WORKER_NAME --p3 zmp://ZIL_POOLНастройка Bzminer
Основные команды майнера Bzminer
--disable отключает указанные видеокарты от майнинга. В качестве разделения используется пробел. Используйте ID устройства в формате pci_bus:pci_device (например, --disable 1:0 3:0). Используйте команду --devices, чтобы найти ID устройств. В HiveOS данный параметр задается в поле доп. конфигурации;
-w в данном поле указывается адрес вашего кошелька или адрес аккаунта на пуле;
--w2 для указания второго адреса, если вы майните в дуал режиме;
--pool_password, --pool_password2 пароль, по умолчанию используйте x;
-w, --worker, --worker2 имя воркера (рига). Задается либо отдельным параметром либо через точку после адреса кошелька;
--cpu-priority уровень загруженности процессора CPU во время майнинга на видеокарте. По умолчанию установлен на 2. Если процессор не тянет, можно поставить 0. Максимальное значение - 5;
--reconnect-on-fail-shares переподключение майнера к пулу в случае получения от пула отклоненных шар;
--nvidia 1майнить только на устройствах Nvidia;
--amd 1майнить только на устройствах AMD;
-h, --help вывод всех доступных команд.
Разгон в майнере Bzminer
--oc_lock_memory_clock блокировка значения разгона по памяти. Также вы можете через пробел задать разные значения для видеокарт;
--oc_core_clock_offset устанавливает тактовую частоту ядра видеокарты в МГц. Через пробел можно указать значение для нескольких карт;
--oc_memory_clock_offset устанавливает частоту памяти видеокарты в МГц. Через пробел можно указать значение для нескольких карт;
--oc_power_limit указание power limit (потребления видеокарты), в ваттах. Через пробел можно указать уникальное для каждой карты значение. Например --oc_power_limit 140 150 160 150.
Типичные ошибки при использовании майнера Bz miner
Комиссии (процент разработчиков)
ETC - 0,5%
RVN - 0,5%
ALPH - 0,5%
Kaspa - 1%
API майнера Bzminer
--http_port задает порт. Порт по умолчанию - 4014.