Skip to content

Instantly share code, notes, and snippets.

@ilbonzo
Last active October 23, 2017 08:55
Show Gist options
  • Save ilbonzo/a8bee2177a7c0885071af4203bef9276 to your computer and use it in GitHub Desktop.
Save ilbonzo/a8bee2177a7c0885071af4203bef9276 to your computer and use it in GitHub Desktop.
Monero mining
sudo apt-get install git libcurl4-openssl-dev build-essential libjansson-dev autotools-dev automake
git clone https://github.com/hyc/cpuminer-multi
cd cpuminer-multi
./autogen.sh
CFLAGS="-march=native" ./configure
# or without AES-NI
CFLAGS="-march=native" ./configure --disable-aes-ni
make
sudo ./minerd -a cryptonight -o stratum+tcp://xmrpool.eu:3333 -u WALLET_ADDRESS_HERE -p x
docker run -d --name some-wolf-cpuminer-multi minecoins/wolf-cpuminer-multi -a cryptonight -o stratum+tcp://xmrpool.eu:3333 -u WALLET_ADDRESS_HERE -p x
docker logs some-wolf-cpuminer-multi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment