Skip to content

Instantly share code, notes, and snippets.

@newbrunomartins
Last active December 28, 2017 16:14
Show Gist options
  • Save newbrunomartins/7d1a8c1b53036ecab8f10c2a2268d951 to your computer and use it in GitHub Desktop.
Save newbrunomartins/7d1a8c1b53036ecab8f10c2a2268d951 to your computer and use it in GitHub Desktop.
Iniciando a mineração em ambientes unix
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 brunocorream@gmail.com -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