Skip to content

Instantly share code, notes, and snippets.

View nojacko's full-sized avatar

James Jackson nojacko

View GitHub Profile
@return1
return1 / bitcoin-cpuminer.sh
Last active May 21, 2025 01:44
install a bitcoin cpuminer on ubuntu/debian
# 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"