Excellent results, it's doubled pps to previous version. It varies 250-350 pps. Recommended.
Same. Getting 300-450pps
How do I compile that?
I have the original Sunny build with the sieve update in my VPS'
Thanks for the input!
First, it's easier to create the new smallest droplet. If you want to do it on the existing one you can do it also, I'll make cleaer the difference.
Create smallest droplet (512MB/ 1 CPU), select your region, select Ubuntu 13.04 x64. It has no desktop, we don't need it and desktop may make mining just a bit slower. Connect to a droplet console.
First change the root password, it's awkward to use default DigitalOcean password, hard to remember, type:
passwd
It's not recommended to work as root under linux, you can easily mess things up. Create a new user and make it a sudoer so it can do what root can, but safely. Enter a new password for the user and few enters, no need to enter other info:
adduser
addusersudo
logoff
sudo apt-get install git build-essential libssl-dev libboost-all-dev libdb5.3++-dev -y
rm -rf primecoin
git clone https://github.com/Chemisist/primecoin.git
sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile
cd ~/primecoin/src
make -f makefile.unix USE_UPNP=-
sudo swapoff /swapfile
sudo rm /swapfile
mkdir ~/.primecoin
echo "rpcuser=ARPCUserName
rpcpassword=SomethingReallyLongOK
gen=1" > ~/.primecoin/primecoin.conf
sudo mv primecoind /usr/local/bin/.
cd ~
primecoind --daemon
watch 'primecoind listtransactions & primecoind getmininginfo'
This should be it. You should have 300 pps in a few minutes. Tips are appriciated.
getting error couldnt find libdb5.3++-dev
Try apt-get install libdb-dev
now theres a error here git clone https://github.com/Chemisist/primecoin.git