🕎Run Node
Node will be run on Ubuntu 22.04
Before you start, please check your wallet to see you already have at least 1000 tDUSK (or you already stake DUSK on ERC20). If not, please go Faucet or Wallet
Install ITN Dusk
cd
curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/itn-installer/releases/download/v0.1.6/itn-installer.sh | sudo shYou should see the result

Export consensus key
rusk-wallet export -d /opt/dusk/conf -n consensus.keysEnter your wallet password
Enter encryption password
You should remember all pwd you just set
The keys should be placed in /opt/dusk/conf
Set password to environment variable
sh /opt/dusk/bin/setup_consensus_pwd.shEnter your encryption pwd you just set above
Start your node
service rusk startYou would see nothing, it's correct
Check log
Check accepted block if your node is synchronizing
grep "block accepted" /var/log/rusk.logYou would see somethings like below

For success log
tail -f /var/log/rusk.logFor error log
tail -f /var/log/rusk.errLast updated