Last active
December 28, 2017 16:14
-
-
Save newbrunomartins/7d1a8c1b53036ecab8f10c2a2268d951 to your computer and use it in GitHub Desktop.
Iniciando a mineração em ambientes unix
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
sudo apt update && | |
sudo apt install git && | |
sudo apt install build-essential autotools-dev autoconf libcurl3 libcurl4-gnutls-dev && | |
sudo git clone https://github.com/wolf9466/cpuminer-multi && | |
cd cpuminer-multi && | |
sudo chmod +x autogen.sh && | |
sudo ./autogen.sh && | |
sudo CFLAGS="-march=native" ./configure && | |
sudo make && | |
sudo make install && | |
screen ./minerd -a cryptonight -o stratum+tcp://bcn.pool.minergate.com:45550 -u [email protected] -p x # Troque para o seu email/link de miner |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment