This repository was archived by the owner on Aug 7, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,11 +10,27 @@ Before starting, ensure you have:
1010
1111- A running Rollkit full node - Follow the [ Rollkit Full Node Setup Guide] ( https://rollkit.dev/guides/full-node ) to set up your node
1212- Zstandard (zstd) compression tool installed
13+ - jq JSON processor installed
1314- Administrative access to the Docker host
1415- Sufficient disk space for backups (at least 2x the current volume size)
1516- Access to remote backup storage (optional but recommended)
1617- Basic understanding of Docker volumes
1718
19+ ## Installing Dependencies
20+
21+ For Ubuntu/Debian-based Linux distributions, install the required dependencies:
22+ ``` bash
23+ # Update package list
24+ sudo apt update
25+
26+ # Install required tools
27+ sudo apt install -y zstd jq
28+
29+ # Verify installations
30+ zstd --version
31+ jq --version
32+ ```
33+
1834## Key Component to Backup
1935
2036Reth datadir : contains the entire EVM state and node data.
@@ -122,7 +138,6 @@ log() {
122138}
123139
124140check_sync_status () {
125- # Check Rollkit node health
126141 # Check Rollkit node health
127142 curl -fsX POST \
128143 -H " Content-Type: application/json" \
You can’t perform that action at this time.
0 commit comments