Linux(Ubuntu14.04LTS)上でBitzenyのマイナーを動作させる

BitzenyのマイナーをLinux上で動作させたのでメモ。

apt update
apt upgrade
apt-get install git
apt-get install automake
apt-get install libtool
apt-get install pkg-config
apt-get install libcurl4-openssl-dev
apt-get install make
apt-get install cpulimit

git clone https://github.com/bitzeny/cpuminer.git cpuminer
cd cpuminer
./autogen.sh
./configure CFLAGS="-O3 -march=native -funroll-loops -fomit-frame-pointer"
make

マイナーを実行
nohup cpulimit -l 85 -- ./minerd -a yescrypt -o stratum+tcp://POOL:PORT -u user.worker -p password &