Peaq
Requirements:
For now, 1/2/20 is enough. For comfortable work 2/4/50. Requirements will increase in the future
About Peaq: Site Discord Twitter Official docs https://docs.peaq.io/node-operators/run-an-agung-node-peaq-testnet
sudo apt update && sudo apt upgrade -y
sudo apt install wget -y
Download archive:
wget tar zxvf peaq-node-agung-apr-7-2022.tar.gz && chmod +x peaq-node
Create service file:
printf "[Unit]
Description=Peaq Node
[Service]
User=$USER
ExecStart=$HOME/start_node.sh
WorkingDirectory=$HOME
Restart=always
RestartSec=60
[Install]
WantedBy=multi-user.target" > /etc/systemd/system/peaq-node.service
Create a start script: (Change Mynodename to the name of your node)
tee <<EOF > $HOME/start_node.sh
#!/bin/sh
./peaq-node \
--base-path ./chain-data \
--chain agung \
--port 1033 \
--ws-port 9944 \
--rpc-port 9933 \
--rpc-cors all \
--pruning archive \
--name Mynodename
EOF
Change rights to the script:
chmod +x start_node.sh
Relod daemon:
sudo systemctl daemon-reload
sudo systemctl enable peaq-node
sudo systemctl restart peaq-node
View logs:
journalctl -u peaq-node -f
After that, the node will start synchronization and you will see a similar picture:

Good Luck!
Last updated