I don't know the commands to compile the bin for Linux on your vps.
I have clone the git on my vps, but now I don't know what's to do
I learn this my self as well with help of xylo dev i dont know linux myself so i know only that this works for me and i was able setup my vps (couple of) xylo masternods with this commands below
I have Ubuntu 16.04.3
Login via putty and use this one long command first (copy line by line from her ctr+c and paste to putty window but use
shift+insert):
sudo apt-get -y update && sudo apt-get -y install build-essential libssl-dev libdb++-dev libboost-all-dev libcrypto++-dev libqrencode-dev libminiupnpc-dev libgmp-dev libgmp3-dev autoconf autogen automake libtoolwhen done :
sudo apt-get install git
git clone https://github.com/robkaandorp/xylo.git XYLO (copy that full line command from git to XYLO, dont click the link)
cd XYLO/src
make -f makefile.unix USE_UPNP=-make file will take few minutes of time and when is done start it
./XYLOdthis will create hidden folder and will tell you to make config file in this location so:
cd
cd .XYLO
nano XYLO.conf
and place
rpcuser=yourusername
rpcpassword=yourrandompassword
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0
logtimestamps=1
port=7875
rpcport=7876
addnode=45.76.92.246:7875
addnode=82.77.149.121:7875
add more fresh nodes
masternode=1
externalip=yourVPSip:7875
masternodeprivkey=yournodekeyyougeneratedfromyourwindowswallet
and save it, then
cd
cd XYLO/src
./XYLOd -starting your node
you need let it sync so monitor it
./XYLOd getinfo because i got experience that sometimes sync stops and require restart or even delate all from excluding wallet.dat and sync again
current number of blocks 379118
if your vps have only 1 GB memory you need create swap file in the beginning with:
sudo fallocate -l 2G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo nano /etc/fstabcd .XYLO/swapfile none swap sw 0 0 put in and save
I hope this can help and not only you