Skip to content

Instantly share code, notes, and snippets.

View gabu's full-sized avatar
Working from Sapporo

Shoya Tsukada gabu

Working from Sapporo
View GitHub Profile
@gabu
gabu / cpuminer_setup.sh
Last active December 6, 2017 16:29 — forked from paulsheldrake/cpuminer_setup.sh
Install cpuminer on an AWS instance
sudo yum -y update
sudo yum -y groupinstall "Development Tools"
sudo yum -y install git libcurl-devel libcurl jansson-devel jansson
# install cpuminer
git clone --recursive https://github.com/pooler/cpuminer.git
cd cpuminer
git checkout v2.3.3
./autogen.sh
./configure CFLAGS="-O3"