-
-
Save ourway/a158a43fb3208abbb5a7 to your computer and use it in GitHub Desktop.
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 yum -y update | |
| sudo yum -y groupinstall "Development Tools" | |
| sudo yum -y install git libcurl-devel libcurl | |
| # jansson C json library | |
| sudo yum -y install jansson | |
| sudo yum -y install jansson-devel | |
| # install cpuminer | |
| git clone --recursive https://github.com/pooler/cpuminer.git | |
| cd cpuminer | |
| ./autogen.sh | |
| ./configure CFLAGS="-O3" | |
| make | |
| cd ~/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment