My preferred way to upgrade a vps is using git. I'm using screen to detach and reattach a terminal session.
initial:
git clone https://github.com/NeXTHorizon/hz-source.git
cd hz-source
./compile.sh
screen -S hzlive -L ./run.sh
CTRL-a d
upgrade to latest version:
git pull
./compile.sh
screen -rd hzlive
CTRL-C
screen -S hzlive -L ./run.sh
Very nice. Useful. I just did it that way. Works well, and is nicely short.
Two minor additions:
sudo apt-get update; sudo apt-get install openjdk-7-jdk -y # (be)for(e) "initial"
Please mention the
https://github.com/NeXTHorizon/as an official source, in the OP of this thread.
Thx.