Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/afritzler/cpuminer-arm
- Owner: afritzler
- License: apache-2.0
- Created: 2018-01-09T20:38:34.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-09-05T11:20:25.000Z (about 1 year ago)
- Last Synced: 2023-09-05T12:34:02.040Z (about 1 year ago)
- Topics: arm, blockchain, board, cryptocurrency, minerd, raspberry-pi, raspberrypi
- Language: Dockerfile
- Size: 81.1 KB
- Stars: 21
- Watchers: 6
- Forks: 15
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```