Last active
April 20, 2025 13:18
-
-
Save return1/5309843 to your computer and use it in GitHub Desktop.
install a bitcoin cpuminer on ubuntu/debian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install dependencies | |
sudo apt-get install libcurl4-openssl-dev libncurses5-dev pkg-config automake yasm | |
# clone cpuminer | |
git clone https://github.com/pooler/cpuminer.git | |
# compile | |
cd cpuminer | |
./autogen.sh | |
./configure CFLAGS="-O3" | |
make | |
# choose a miner pool and register there | |
# start the miner | |
./minerd --url=your.minerpool.org --user=username --pass=password |
I want to write the code on orange pi 3.Is it also running.And I want to make solo mining.How can I do
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
if any one stuck on make..
just copy 8 to 11 and execute all commands at same time.
cd cpuminer
./autogen.sh
./configure CFLAGS="-O3"
make