Hello.
I am Sonji of CCLab who is in charge of building a Korean community.
We made a simple guide to install the full-node.
4cpu 8gb
ubuntu 22.04
aptos 깃 가져오기
git clone GitHub - aptos-labs/aptos-core: A layer 1 for everyone!
aptos-core 폴더로 이동
cd aptos-core
스크립트 실행 (설정 자동세팅)
./scripts/dev_setup.sh
설정 적용
source ~/.cargo/env
aptos-core 폴더 안에서
git checkout --track origin/devnet
cp config/src/config/test_data/public_full_node.yaml fullnode.yaml
curl -O https://devnet.aptoslabs.com/genesis.blob
curl -O https://devnet.aptoslabs.com/waypoint.txt
섹션 만들기
tmux new -s aptos
풀노드 시작
cargo run -p aptos-node --release – -f ./fullnode.yaml
섹션 나가기
ctrl+b + d
(섹션 재진입시) tmux attach -t aptos
Have a nice day!