Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 10 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,22 +98,15 @@ echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab

```bash
cd ~
wget https://ftp.basementnodes.ca/genesis_backup_20250407082420.tar.lz4
wget http://85.122.195.176:37264/dataNoWal.zip
#Out wget https://ftp.basementnodes.ca/genesis_backup_20250428212110.tar.gz
```

If this one is currently unavailable try the following

```bash
cd ~
wget http://85.122.195.176:55865/genesis_backup_20250505.tar.gz
```

let the download finish and grab a coffee.

setup the github repo.

```bash
git clone https://github.com/JoMfN/genesis-crypto.git
git clone https://github.com/alpha-omega-labs/genesis-crypto.git
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cd genesis-crypto
```

Expand All @@ -130,25 +123,21 @@ check if a .genesis folder was generated.
unzip the fully downloaded `data` folder

```bash
lz4 -d genesis_backup_20250407082420.tar.lz4 | tar -xvf -
```

If you downloaded the .tar.gz file instead:

```bash
tar -xvzf genesis_backup_20250505.tar.gz
unzip dataNoWal.zip
#tar -xvzf genesis_backup_20250428212110.tar.gz
```

replace it with the one existing in `~/.genesis/data`
replace it with the one existing in `~/.genesis/data`

```bash
mv genesis_backup_20250407082420/* ~/.genesis/
mv data ~/.genesis/
#mv genesis_backup_20250428212110/* ~/.genesis/
```

If you downloaded the .tar.gz file instead:
If you downloaded another backup with different date .tar.gz file instead (make sure this is the only extracted backup folder then) :

```bash
mv genesis_backup_20250505/* ~/.genesis/
mv genesis_backup*/* ~/.genesis/
```

> ⚠️ Ensure `genesisd` is not running before replacing `.genesis`
Expand Down