Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit e2ffa45

Browse files
committed
jq + deps
1 parent b77d95b commit e2ffa45

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

guides/evm-reth-backup.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff 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

2036
Reth datadir : contains the entire EVM state and node data.
@@ -122,7 +138,6 @@ log() {
122138
}
123139

124140
check_sync_status() {
125-
# Check Rollkit node health
126141
# Check Rollkit node health
127142
curl -fsX POST \
128143
-H "Content-Type: application/json" \

0 commit comments

Comments
 (0)