Advertisement
EvenoR

GaiaNet Node Script

Mar 8th, 2025 (edited)
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.65 KB | None | 0 0
  1. #Check ports
  2. sudo ss -tulpwn | awk 'NR==1 || /LISTEN/'
  3.  
  4. #Update system
  5. sudo apt update && sudo apt upgrade -y
  6.  
  7. #Launch Installation script
  8. wget --no-cache -q -O gaiascript.sh https://raw.githubusercontent.com/Evenorchik/gaianetnode/refs/heads/main/gaiascript.sh && sudo chmod +x gaiascript.sh && ./gaiascript.sh
  9.  
  10. #In case you have Error do next steps:
  11. #1
  12. source $HOME/.bashrc
  13.  
  14. #2
  15. gaianet init --config https://raw.githubusercontent.com/GaiaNet-AI/node-configs/main/qwen2-0.5b-instruct/config.json
  16.  
  17. #Starting you node
  18. gaianet start
  19.  
  20. #Get node info
  21. gaianet info
  22.  
  23. #Stop node
  24. gaianet stop
  25.  
  26. #Check farming bot logs
  27. sudo journalctl -u gaia-bot -f
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement