Polylogic - DAS - Masternode Guide - Windows/Linux Cold Wallet + Ubuntu 16.x VPS Masternode LINKguide
I ran into some of the mentioned errors while using the build (rekt for being lazy

).I didn't try the compile version of the guide (which probably works by the looks of it) and I got everything to compile on an ubuntu 16 droplet using:
https://steemit.com/das/@m-bernini/setting-das-masternodeNOTE:
The above guide has a typo. the line:
automake pkg-config libssl-dev libevent-dev bsdmainutils
Should read:
sudo apt-get install automake pkg-config libssl-dev libevent-dev bsdmainutils
Also, I haven't checked the 'for lazy people only' part. I skipped it and went straight from
'Remote' to
'Wallet'After entering this command:
sudo nano ~/DAS-source/src/chainparams.cpp
You'll need to press CTRL+w to open a search window. Type '20282' and hit enter to end up just where you need to be to change the number.
N.B, when you use the above guide (or polylogics guide) setting up a MN on a 5$ VPS instance you'll run into problems since the VPS will run out of memory (hey you can't have it all for 5$).
In order to compile successfully on a cheap ass VPN you'll need to make a swap file (it adds virtual memory so you'll make it through the compile)
The first thing you'll want to after you logged in to your droplet is make that swap file:
sudo dd if=/dev/zero of=/var/swap.img bs=1024k count=1000
sudo mkswap /var/swap.img
sudo swapon /var/swap.img
And make sure it persists after you reboot:
sudo chmod 0600 /var/swap.img
sudo chown root:root /var/swap.img
sudo nano /etc/fstab
The last command will open up a file in nano. Here you add the following line at the bottom:
/var/swap.img none swap sw 0 0
Save by pressing CTRL+x and pressing 'y' at the prompt.
swapon -s
Should now show a 1GB swap file which will get you through the compiling process.