Last active
January 3, 2016 18:59
-
-
Save c1b3rh4ck/8505728 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
#!/bin/bash | |
#miner using linode 4 trial hours, this is why linode cancel the 4 trial hour :3 ,there was another script to create automatic users | |
#abusing of the feature of dots in gmail, if you got an email like : [email protected] you could get 8 valid emails to use in linode trial :3 | |
#[email protected], [email protected], tes.t123@gmail... this was until they add the obligatory payment options :S | |
users=(linode1 linode2 linode3 linode4) | |
password=(lino1 lino2 lino3 lino4) | |
#Install the cpu miner and the requirements. | |
aptitude -y install git unzip build-essential automake libcurl4-openssl-dev libdb++-dev libminiupnpc-dev libboost-all-dev autotools-dev && wget github.com/uncle-bob/quarkcoin-cpuminer/archive/master.zip && unzip master.zip | |
#running the instances on intel xeon we've got 8 cores | |
rm master.zip && cd quarkcoin-cpuminer-master && ./autogen.sh &&./configure&& make | |
./minerd -a quark -o stratum+tcp://mine-pool.net:3350 -u h3ct0r915.linode2 -p lino2 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment