First, connect to your server via SSH:
ssh user@your-server-ip
Update the package list and install required packages:
sudo apt update
sudo apt upgrade -y
sudo apt install -y curl wget git build-essential
The Bool node software is written in Go. Install Go by running:
wget <https://golang.org/dl/go1.20.4.linux-amd64.tar.gz>
sudo tar -C /usr/local -xzf go1.20.4.linux-amd64.tar.gz
Add Go to your PATH:
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.profile
source ~/.profile
Verify the installation:
go version
Clone the Bool repository from GitHub:
git clone <https://github.com/bool-network/bool-node.git>
cd bool-node