Last active
December 20, 2015 01:28
-
-
Save MiLk/6048804 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
| cd /usr/local/src | |
| git clone https://github.com/pooler/cpuminer.git | |
| cd cpuminer | |
| apt-get install -y build-essential automake libcurl4-gnutls-dev | |
| ./autogen.sh | |
| ./configure CFLAGS="-O3" | |
| make |
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
| #!/bin/bash | |
| ./minerd \ | |
| --algo=scrypt \ | |
| --url=stratum+tcp://mining.eu.hypernova.pw:3333 \ | |
| --user=user \ | |
| --pass=pass \ | |
| --threads=8 \ | |
| --retries=5 \ | |
| --syslog \ | |
| --background |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment