Friday, February 7, 2014

CLOUD MINING MAXCOIN 

FOR POOL http://max.1gh.com/

compiled  from various sources :
this worked ubuntu server 13.10 (azure), also debian 7.0 x64 (digital ocean)

once you've create machine and sshhhhed in..
(note to self, azure ssh login was azureuser@MYTHING.cloudapp.net)

-i have not tried this myself, yet, but i assume you can use an exchange based address rather than get the wallet to spit one out...
the wallet being reliant on command line interface. for list of commands see
https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list

Create a swap file -


sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile

Install dependencies -


sudo apt-get update
sudo apt-get install build-essential libcurl4-openssl-dev git zip
 
Download the 1GH MaxCoin (SHA-3) minerd (+configure and compile) -
 
git clone https://github.com/1gh/cpuminer
cd cpuminer
./configure CFLAGS="-O3"
make
strip minerd
 
Quick test -
 
./minerd --help 
 
Run -


./minerd -a keccak -o stratum+tcp://maxpool.1gh.com:17333 -u maxwalletaddress -p x




to keep it running on restarts, install supervisor,  create script -

apt-get install supervisor
mkdir -p /var/log/supervisor
touch /etc/supervisor/conf.d/mining.conf
nano /etc/supervisor/conf.d/mining.conf


script contents

 
[program:mining]

command=/root/cpuminer/minerd
-a keccak -o stratum+tcp://maxpool.1gh.com:17333 -u maxwalletaddress -p x


stdout_logfile=/var/log/supervisor/%(program_name)s.log

stderr_logfile=/var/log/supervisor/%(program_name)s.log

autorestart=true







 
 
[start script to auto open your miner in case the server resets -
/etc/init.d/supervisor stop

/etc/init.d/supervisor start
 
 
view the status of your miner -

tail -f /var/log/supervisor/mining.log 
 
 
 
donate maxcoin to :
mRp5agadH3XCmX5vbabd3gno21LV3JNN4i 
 

hashed together from :
cloud mining guide to maxcoin - using official cpuminer, which at this moment is trash.
https://bitcointalk.org/index.php?topic=450539.0

updated in comment to use pool miner

cloudmining guide to quarkcoin, features autostart script.

No comments:

Post a Comment