Post
Topic
Board Announcements (Altcoins)
Re: [ANN][HZ] Horizon Long + Fair Distribution|Decentralized Asset Exchange
by
altsheets
on 07/04/2015, 20:58:36 UTC
My preferred way to upgrade a vps is using git. I'm using screen to detach and reattach a terminal session.

initial:
Code:
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:
Code:
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.