The Graphical User Interface (GUI) mode of Toolbox offers a user-friendly interface that allows you to efficiently manage your bitcoin mining operations. To launch the application, simply follow the steps below:
In addition to the GUI mode, Braiins Toolbox also provides a Command Line Interface (CLI) version, allowing you to interact with the application using text-based commands. The CLI version can be run from the same binary as the GUI version, providing a unified experience.
To get started with the CLI mode, follow the steps below:
Open a terminal or command prompt on your system.
Navigate to the Toolbox installation directory.
Windows and macOS have their own specific commands to be run in CLI mode:
For Windows, run it as braiins-toolbox.exe --version without the ./ at the beginning.
For macOS, the CLI app is stored here: /Applications/Braiins\ Toolbox.app/Contents/MacOS/braiins-toolbox
This is a quick summary of the most important commands.
# Reboot devices./braiins-toolbox system reboot '10.10.10-11.*'# Collect HW data and logs from Antminers S19 with Braiins OS or Bitmain factory firmware./braiins-toolbox system collect-data '10.10.10-11.*'# Locate device./braiins-toolbox system locate-device on '10.10.10.1'# Run command./braiins-toolbox system execute '10.10.10-11.*' --command "cat /etc/bos_version"# Set network to DHCP./braiins-toolbox system set-network dhcp '10.10.10.1'
# Set cooling mode to auto on Braiins OS devices./braiins-toolbox cooling set --mode auto '10.10.10.10'# Set hot temperature to 75°C on Braiins OS devices./braiins-toolbox cooling set --hot-temp 75 '10.10.10.10'# Require at least 4 fans to be operational and set auto cooling mode on Braiins OS devices./braiins-toolbox cooling set --mode auto --min-required-fans 4 '10.10.10.10'# Configure manual mode with fixed fan speed 70% on Braiins OS devices./braiins-toolbox cooling set --mode manual --fixed-fan-speed 70 '10.10.10.10'# Define custom fan range for auto mode on Braiins OS devices./braiins-toolbox cooling set --mode auto --custom-fan-range 30-90 '10.10.10.10'# Set fan behavior while paused on Braiins OS devices./braiins-toolbox cooling set --fan-paused-mode manual --fan-paused-pwm 50 '10.10.10.10'
# List all available Braiins OS advanced settings./braiins-toolbox advanced list# Read current advanced settings from Braiins OS devices./braiins-toolbox advanced get --all '10.10.10-11.*'# Configure advanced settings on Braiins OS devices./braiins-toolbox advanced set -S enable_defrost=true -S defrost_temperature_limit_c=10 '10.10.10-11.*'# Reset all advanced settings to their defaults on Braiins OS devices./braiins-toolbox advanced reset --all '10.10.10-11.*'