This post is from a low-reputation account and contains an unverified outbound link. Be cautious before clicking external links.

Cardano Testnet setup tutorial guide for Linux

evopdx(25)
Published in
#cardano
Words
144
Reading
1 min
Listen
Play
7y

For those who where asking, Here is the Linux setup for Cardano Testnet

Once you have Linux up and running

open up terminal

sudo apt update && sudo apt upgrade

sudo apt dist-upgrade

Type:
curl https://sh.rustup.rs -sSf | sh

1

source $HOME/.cargo/env

rustup install stable

rustup default stable

mkdir jormungandr-node

cd jormungandr-node

git clone https://github.com/input-output-hk/jormungandr

cd jormungandr

git submodule update --init --recursive

sudo apt \update

sudo apt install gcc

Y

sudo apt install libssl-dev

sudo apt install pkg-config

cargo install --path jormungandr

cargo install --path jcli

jcli -V

chmod +x scripts/bootstrap

mkdir selfnode

cd selfnode

../jormungandr/scripts/bootstrap | tee node_config.txt this saves your information on the server, but when doing the real node, please do not leave this information on the node

jormungandr --genesis-block ./block-0.bin --config.yaml --secret ./pool-secret1.yaml &> my_node.log &

jcli rest v0 account get (your faucet account ID ) -h (API address)

tail -f my_node.log

Cardano Testnet setup tutorial guide for Linux | Ecency