Skip to content

Add link for testnet dump for archive node #669

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 2, 2024
Merged
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
8 changes: 7 additions & 1 deletion docs/participate/run-nodes/archive-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,18 @@ mv /var/ton-work /var/ton-work.bak
#### Download the dump

1. Request `user` and `password` credentials to gain access for downloading dumps in the [@TONBaseChatEn](https://t.me/TONBaseChatEn) Telegram chat.
2. Here is an example command to download & restore the dump from the ton.org server:
2. Here is an example command to download & restore the **mainnet** dump from the ton.org server:

```shell
wget --user <usr> --password <pwd> -c https://archival-dump.ton.org/dumps/latest.zfs.lz | pv | plzip -d -n <cores> | zfs recv data/ton-work
```

To install **testnet** dump use:

```shell
wget --user <usr> --password <pwd> -c https://archival-dump.ton.org/dumps/latest_testnet.zfs.lz | pv | plzip -d -n <cores> | zfs recv data/ton-work
```

Size of the dump is __~1.5TB__, so it will take some time to download and restore it.

Prepare and run the command:
Expand Down
Loading