Skip to content
Open
Changes from 1 commit
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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,22 +98,22 @@ 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 https://ftp.basementnodes.ca/genesis_backup_20250428212110.tar.gz
Copy link
Author

Choose a reason for hiding this comment

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

```

If this one is currently unavailable try the following

```bash
cd ~
wget http://85.122.195.176:55865/genesis_backup_20250505.tar.gz
wget http://85.122.195.176:55865/genesis_backup.tar.gz
Copy link
Author

Choose a reason for hiding this comment

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

Copy link
Author

Choose a reason for hiding this comment

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

in general

default HOME_DIR=~/.genesis

wget -qO- "${SNAPSHOT_URL}" \
  | lz4 -d \
  | tar -xvf - -C "${HOME_DIR}"

```

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 +130,25 @@ check if a .genesis folder was generated.
unzip the fully downloaded `data` folder

```bash
lz4 -d genesis_backup_20250407082420.tar.lz4 | tar -xvf -
tar -xvzf genesis_backup_20250428212110.tar.gz
Copy link
Author

Choose a reason for hiding this comment

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

lz4 -d data.tar.lz4 | tar -xvf -

```

If you downloaded the .tar.gz file instead:

```bash
tar -xvzf genesis_backup_20250505.tar.gz
tar -xvzf genesis_backup.tar.gz
```

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

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

If you downloaded the .tar.gz file instead:

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

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