Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/afritzler/cpuminer-arm

CPU Miner (minerd) for Raspberry Pi and other ARM based boards
https://github.com/afritzler/cpuminer-arm

arm blockchain board cryptocurrency minerd raspberry-pi raspberrypi

Last synced: 5 days ago
JSON representation

CPU Miner (minerd) for Raspberry Pi and other ARM based boards

Awesome Lists containing this project

README

        

# cpuminer-arm
CPU Miner (minerd) for Raspberry Pi and other ARM based boards

# Prerequisites
* Docker installed
* make
* Miningpool (e.g. Minergate)

# Run

To run the cpuminer container

```shell
docker run -d \
--name minerd \
-e ALGO="cryptonight"
-e URL="stratum+tcp://xmr.pool.minergate.com:45700" \
-e EMAIL="[email protected]" \
-e PASSWORD="x" \
-e THREADS="1" \
afritzler/cpuminer-arm:latest
```

You can change the thread count by adjusting the `THREADS=4` variable. Make sure your device doesn't overheat!

```shell
watch vcgencmd measure_temp
```

# Build & Push
Get the github repository first

```shell
git clone https://github.com/afritzler/cpuminer-arm.git
```

To build the Docker image locally

```shell
cd cpuminer-arm
make
```

To publish the image to Dockerhub

```shell
docker login
...
make push-cpuminer
```