> For the complete documentation index, see [llms.txt](https://services.thequadblock.com/services/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://services.thequadblock.com/services/mainnet/cosmos-hub/node-services/snapshot.md).

# Snapshot

The snapshot is designed for node operators to run an efficient validator service on Osmosis chain

<details>

<summary>Snapshots</summary>

{% code title="Quadblock" overflow="wrap" lineNumbers="true" %}

```
soon
```

{% endcode %}

{% code title="Polkachu" overflow="wrap" lineNumbers="true" %}

```
sudo apt update
sudo apt install snapd -y
sudo snap install lz4

wget -O planq_2916360.tar.lz4 https://snapshots.polkachu.com/snapshots/planq/planq_2916360.tar.lz4 --inet4-only

systemctl stop planqd
planqd tendermint unsafe-reset-all --home $HOME/.planqd --keep-addr-book

lz4 -c -d planq_2916360.tar.lz4  | tar -x -C $HOME/.planqd
systemctl start planqd

rm -v planq_2916360.tar.lz4
sudo service planq status
sudo journalctl -u planq -f
```

{% endcode %}

{% code title="Nodejumper" overflow="wrap" lineNumbers="true" %}

```
-
```

{% endcode %}

{% code title="Other Sources" overflow="wrap" lineNumbers="true" %}

```
sudo apt update

sudo apt-get install snapd lz4 -y

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1false|" ~/.gaia/config/config.toml

sudo systemctl stop gaiad

cp $HOME/.gaia/data/priv_validator_state.json $HOME/.gaia/priv_validator_state.json.backup

rm -rf ~/.gaia/data

gaiad tendermint unsafe-reset-all --home ~/.gaia/ --keep-addr-book

SNAP_NAME=$(curl -s https://ss.cosmos.nodestake.top/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://ss.cosmos.nodestake.top/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.gaia

mv $HOME/.gaia/priv_validator_state.json.backup $HOME/.gaia/data/priv_validator_state.json

sudo systemctl restart planqd

journalctl -f -u planqd
```

{% endcode %}

</details>
