# Linux Bootstrap

In case you need to quickly sync the blockchain of your Infinity Node or linux wallet, follow the steps below:

```bash
# stop infinity node
sudo systemctl stop sinovate.service

# install unzip package
sudo apt update && sudo apt install unzip

# remove old files and folders
rm -rf ~/.sin/{blocks,chainstate,debug.log,mnpayments.dat,mncache.dat,banlist.dat,peers.dat,netfulfilled.dat,governance.dat,fee_estimates.dat}

# download latest bootstrap archive
wget -O ~/bootstrap.zip https://github.com/SINOVATEblockchain/SIN-core/releases/latest/download/bootstrap.zip

# unzip the bootstrap archive
unzip ~/bootstrap.zip

# move bootstrap files
mv -t ~/.sin ~/bootstrap/blocks ~/bootstrap/chainstate

# remove unnecessary files
rm -rf ~/{bootstrap,bootstrap.zip}

# reboot infinitynode
sudo reboot
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sinovate.gitbook.io/docs/wallet/linux_bootstrap.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
