Bitcoin Forum
June 20, 2024, 04:13:54 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [XPM][SCRIPT] Distributed PrimeCoin Miner Script for Linux  (Read 1950 times)
kalup (OP)
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile WWW
December 09, 2013, 04:37:58 PM
Last edit: December 10, 2013, 01:34:10 AM by kalup
 #1

Hi guys, yesterday with my friend we wrote a script for deploing an XMP miner automatically on a linux machine. This script is usefull to deploy multiple istances on VPS letting them work in a pool.

Download from github

Run on linux Debian, tested on ubuntu server 13.10 x64.



We have choose to buy some VPS for mining them because we don't like ruin our PC and pay electricity fees.

If you want to try it too please use our referal link! Smiley
The following is an example of hosting on DigitalOcean.


  • Create an account on DigitalOcean, when you need to confirm the account enter the promocode LINUX13 to receive a $ 10 bonus. Crete a droplet (I recommend the cheaper version, 1 core, 256MB RAM) with Ubuntu 13:10 x64, NewYork 2.
  • Please check the email address, you will receive a message with data to connect to your server. Dowload Putty, you will not need to install it, run it and enter the hostname in the field "root @ ipaddress" where ipaddress is the address that you received by email. Answer YES to all putty requests
  • At this point you should see a black screen where you must enter the password that you have received via e-mail (you can change it with the passwd command). NOTE: To paste anything within this interface, use the right mouse button
  • Download the script from github:
    Code:
    wget https://raw.github.com/VoidSec/PrimeCoinMiner-Script/master/primeCoinPoolScript.sh

  • modify it by entering your settings
    Code:
    nano ./primeCoinPoolScript.sh
    and confirm and save it pressing Q, then Y and RETURN
  • Finally, run the command to compile everything and create the necessary scripts and you're done:
    Code:
    chmod +x ./primeCoinPoolScript.sh; ./primeCoinPoolScript.sh

  • At this point you may as well close Putty and shut down your pc, the miner will continue to work automatically. Check the results obtained controlled directly on the poolmine site where you can see the balance. In our example we have to check at beeeeer.org site: user balance





    This is the script
    Code:
    #!/bin/bash # Primecoin Poolminer config script v0.1.1a # Noobly repacked by kalup, www.voidsec.com # Donations welcome! # BTC: 1DP5ZzLuj9BuXgMqRn5z3zWZvh6jQjVcQb # XPM: AGgPQKp7YAau1zUZqf6Pxqr3dnqoEqyBCm # Last Update: 8 December, 2013

    # PUT YOUR SETTINGS HERE # POOL_USER, insert your pool user, in caso of beeeeer.org use YOUR address # POOL_PASSWORD, pool password or user pool password, in case of beeeeer.org leave as default # POOL_IP, pool ip-address, in case of beeeeer.org EU: 176.34.128.129 US: 54.200.248.75 ASIA: 54.251.179.44 # POOL_PORT, default pool port. beeeeer.org uses 1337 (lol) # SERVER_PROC number of processors from the server you are allowed to use, -1 unlimited. # POOL_FEE percentage of return given to the pool as fee values [1-100]

    POOL_USER="AGgPQKp7YAau1zUZqf6Pxqr3dnqoEqyBCm" POOL_PASSWORD="PASSWORD" POOL_IP="54.200.248.75" POOL_PORT="1337" POOL_FEE="1" SERVER_PROC="1"

    if [[ -z "${POOL_USER}" ]]; then echo "You need to supply a pool username data" exit 1 fi

    # # Starting configuration of the program

    # Build swapfile if [[ ! -f /swapfile ]]; then echo "Building swapfile..." sudo dd if=/dev/zero of=/swapfile bs=64M count=16 sudo mkswap /swapfile sudo swapon /swapfile # Mount on reboot if [[ -z "$(cat /etc/fstab | grep swapfile)" ]]; then echo "/swapfile none swap sw 0 0" | sudo tee -a /etc/fstab > /dev/null 2>&1 fi fi

    # Auto reboot on kernel panic if [[ -z "$(cat /etc/sysctl.conf | grep '^kernel.panic')" ]]; then echo "kernel.panic=3" | sudo tee /etc/sysctl.conf >/dev/null 2>&1 fi

    echo "Installing libraries..." sudo apt-get update sudo apt-get install screen yasm make g++ build-essential bc cpulimit curl dos2unix fail2ban git haveged libboost-all-dev libdb++-dev libminiupnpc-dev libssl-dev m4 nano -y

    # Install GMP cd ~/ rm -rf gmp-5.1.2.tar.bz2 gmp-5.1.2 wget http://mirrors.kernel.org/gnu/gmp/gmp-5.1.2.tar.bz2 tar xjvf gmp-5.1.2.tar.bz2 cd gmp-5.1.2 ./configure --enable-cxx make sudo make install rm -rf gmp-5.1.2.tar.bz2 gmp-5.1.2 cd ~/

    # Enable HAVEGED for entropy sudo update-rc.d haveged defaults sudo service haveged restart

    echo "Downloading and building primecoin..." cat << "SCRIPT" > ~/build-primecoin #!/bin/bash rm -rf ~/primecoin* git clone https://github.com/thbaumbach/primecoin cd ~/primecoin*/src sed -i -e 's/$(OPENSSL_INCLUDE_PATH))/$(OPENSSL_INCLUDE_PATH) \/usr\/local\/include)/' makefile.unix sed -i -e 's/$(OPENSSL_LIB_PATH))/$(OPENSSL_LIB_PATH) \/usr\/local\/lib)/' makefile.unix sed -i -e 's/$(LDHARDENING) $(LDFLAGS)/$(LDHARDENING) -Wl,-rpath,\/usr\/local\/lib $(LDFLAGS)/' makefile.unix make -f makefile.unix USE_UPNP=- SCRIPT chmod +x ~/build-primecoin ~/build-primecoin

    # # Definition of scripts

    echo "Preparing starting script..." cat << SCRIPT > ~/start-primeminer screen -d -m ~/primecoin*/src/primeminer -poolip=$POOL_IP -poolport=$POOL_PORT -pooluser=$POOL_USER -poolpassword=$POOL_PASSWORD -genproclimit=$SERVER_PROC -poolfee=$POOL_FEE SCRIPT chmod +x ~/start-primeminer

    cat << SCRIPT > ~/primeservice #!/bin/bash until ~/start-primeminer; do echo "Restarting miner">&2 sleep 1 done SCRIPT chmod +x ~/primeservice ~/primeservice

    # Add to startup mkdir /var/spool/cron/crontabs/ > /dev/null 2>&1 echo "@reboot ${HOME}/primeservice" | sudo tee /var/spool/cron/crontabs/$(whoami) > /dev/null 2>&1 echo "" | sudo tee -a /var/spool/cron/crontabs/$(whoami) > /dev/null 2>&1 sudo chmod 0600 /var/spool/cron/crontabs/$(whoami) sudo update-rc.d cron defaults

    echo echo echo '==========================================================' echo 'All Done!' echo 'primecoinminer should be up and running, check with top' echo echo 'Run ~/start-primeminer to start primecoind and begin mining' echo 'Run ~/build-primecoin to update and rebuild primecoind'
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!