The creepMiner is a client application for mining Burst on a pool or solo. For more informations about Burst follow this link. It is written in C++ and therefore can be compiled on different operating systems. It is designed multi-threaded to reach the best performance.
- Mine with your CPU (SSE2/SSE4/AVX/AVX2) or your GPU (OpenCL, CUDA)
- Mine solo or in a pool
- Filter bad deadlines with the auto target deadline feature
- Build a network of several miners with the forwarding feature
- Watch the status of the miner in your web browser on every device
Platform | Master | Development |
---|---|---|
Linux | ||
Windows |
For Windows and Debian: download and install the latest release
The install dir for Linux is /opt/creepMiner-{version}
.
The home dir for Linux is ~/.creepMiner/{version}
, for Windows C:\Users\You\.creepMiner\{version}
.
For all others:
- Install Python
- Install Conan:
pip install conan
- Install Poco:
conan install . -s compiler.libcxx=libstdc++11 --build=missing
(inside the creepMiner root dir) - Create the project by executing one of the following commands
- CPU (SSE2, SSE4, AVX, AVX2) + GPU (OPENCL, CUDA) version:
cmake CMakeLists.txt
- CPU only (SSE2, SSE4, AVX, AVX2) version:
cmake CMakeLists.txt -DNO_GPU=ON
- CPU only minimal (SSE2) version (for example for single-board computers):
cmake CMakeLists.txt -DMINIMAL_BUILD=ON
- Make the project
make
(ormake -j <number of cores to use>
for a faster way) - Change your configuration file (located at
~/.creepMiner/<version>/config.json
)
- Follow the Setting up the miner documentation.
- Start the mining with
./run.sh
or in a detachedscreen
by./screen.sh
. - To enter the screen attach by
screen -r creep
. - To detach the screen use the keyboard shortcut
CTRL + A + D
.
- FAQ
- Compilation & Installation
- Setting up the miner
- Forwarding
- Solo mining
- The mining process and optimizations