Have you already renamed all the stuff to dash?Can someone please explain how to do this manually step by step for linux terminal nooobs, I got quite a few MN that I cant launch becourse im an Idiot that only uses linux to operate my MN's
If so, execute these commands on your console
Code:
$vi update.sh
Code:
#!/bin/sh
echo "########### This script will update the Master Node"
sleep 5
VERSION=64
URL=$1
FILE=${URL##*/}
DIR=${FILE%.tar.gz}
IP=$(hostname -I)
wget $URL
tar xzvf $FILE
echo "########### Stopping the Master Node"
./dashd stop
sleep 7
rm dashd
cp $DIR/bin/$VERSION/dashd .
chmod 755 dashd
rm $FILE
rm -rf $DIR
rm .dash/peers.dat
echo "########### Restarting the updated Master Node"
sleep 30
./dashd
sleep 15
./dashd getinfo
sleep 20
echo "########### Master Node status - Active: 1, Inactive: 0"
./dashd masternode list | grep $IP
Now get the script executable by executing
Code:
$chmod +x update.sh
Code:
$./update.sh https://www.dashpay.io/binaries/dash-0.11.2.17-linux.tar.gz