βοΈ0G Storage Node
Recommended Hardware: 4 Cores, 16GB RAM, 1TB of storage (NVME)
System updates, installation of required dependencies
sudo apt-get update
sudo apt-get install clang cmake build-essential
sudo apt install cargocd $HOME && \
ver="1.22.0" && \
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz" && \
sudo rm -rf /usr/local/go && \
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz" && \
rm "go$ver.linux-amd64.tar.gz" && \
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> ~/.bash_profile && \
source ~/.bash_profile && \
go versioncurl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustc --versionCreate zgs service (storage node) for your node to run in the background
Test Stoarge Node with storage CLI

Last updated