Page 1 of 1
Xahau Nodes
Posted: Sun Jul 07, 2024 4:35 pm
by EvrSteward
Use this topic for discussions related to running a Xahau Node
Re: Xahau Nodes
Posted: Thu Aug 15, 2024 1:16 am
by syberfish
Update your Xahau Nodes:
wget -O update.sh https://gist.githubusercontent.com/WietseWind/9480a4fc95e904e54524406005c8c963/raw/49ec192b6cefa2670c5cb7f7994ba116f222a442/update.sh
EDIT FILE
nano update.sh
#Edit so that “update=“ is the target build. In this case: 2024.8.14-release+946
#EG: update=2024.8.14-release+946
MAKE FILE EXECUTABLE
chmod +x update.sh
RUN UPDATE
sudo ./update.sh
#WAIT FOR UPDATE TO COMPLETE (CLI WILL APPEAR)
VERIFY
xahaud server_info
#Look for “server_state” : “full”
#“server_state” : “Connected” is ok
Note: this is for directly installed Xahau instances.
Re: Xahau Nodes
Posted: Thu Aug 15, 2024 5:01 pm
by tristopitsot
Hi, how do I edit a nano file update.sh where to insert and how to change and save the file update=2024.8.14-release+946 ?
Re: Xahau Nodes
Posted: Thu Aug 15, 2024 7:28 pm
by wroomwroom
tristopitsot wrote: ↑Thu Aug 15, 2024 5:01 pm
Hi, how do I edit a nano file update.sh where to insert and how to change and save the file update=2024.8.14-release+946 ?
To edit, write "nano update.sh" and hit enter, (after first getting the file with the wget command), once you have done this you've opened the update.sh file with a text editor called nano.
After your changes, you can save by hitting CTRL + O and then Y for yes and enter, after that you can exit nano by hitting CTRL + X.
If you are unable to save/edit the file, then you need to open the file with the command "sudo nano update.sh" instead of just "nano update.sh".