The following instructions will demonstrate the process of deploying a full node on Binance Smart Chain using the Erigon Ethereum client.
...
00 Prerequisites
0.1 System Requirements
Specification | Minimum Requirement | Used for Demo |
---|---|---|
Processor(s) | ≥ 16-Core | 16-Core |
Free Disk Space | ≥ 2 TB | 7.68 TB |
RAM | ≥ 64 GB | 256 GB |
Network Card | ≥ 5 Mbps | 1000 Mbps |
...
Laptop or desktop computer running the latest version of MacOS, Windows, or Linux.
Used for Demo: MacBook Pro running MacOS Monterey 12.2Terminal Emulator / SSH Client
Login credentials for the server being accessed.
01 Access the Server
Step 1: Open the terminal emulator. (e.g., Terminal, PuTTy, etc.)
...
Code Block | ||
---|---|---|
| ||
$ ssh {username}@{ip.address} $ Password: *User's Password* |
...
02 Install Dependencies
$ sudo apt-get update
$ sudo apt dist-upgrade -y
$ sudo apt autoremove -y
$ sudo apt install git
$ sudo apt install npm
...