- Open Terminal window or use Putty on Windows
- Remote login to your mynode using SSH:
ssh admin@mynode.local
orssh admin@YOUR_MYNODE_IP_ADDRESS
at the command prompt $ Enter your password - Clone the github repository:
git clone https://github.com/mynodebtc/mynode.git mynode-git
- Move inside the git repo: cd mynode-git
- Download the latest commits from github:
git pull
- Create a tar file of root filesystem:
make rootfs
- Start a web-server:
make start_file_server
- Move back to home folder:
cd ~
- Unpack the TAR file and apply the upgrade:
sudo mynode-local-upgrade mynode.local
orsudo mynode-local-upgrade localhost
. This step should install all dependencies and apply upgrades followed by a reboot.
That’s it!
How do I unpack a Tar file?
Unzip these files the same way you would unzip a regular zipped file:
tar –xvzf name-of-file.tar.gz
The basic command is tar
, followed by four options:
x
– instructs tar to extract the files from the zipped filev
– means verbose, or to list out the files it’s extractingz
– instructs tar to decompress the files – without this, you’d have a folder full of compressed filesf
– tells tar the filename you want it to work on