Last active
October 23, 2017 08:55
-
-
Save ilbonzo/a8bee2177a7c0885071af4203bef9276 to your computer and use it in GitHub Desktop.
Monero mining
This file contains 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
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 |
This file contains 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
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