# instructions to use snapshot Make sure you are using omniflixhubd version `v0.2.2` check `omniflixhubd version` if you are not on v0.2.2, upgrade it ``` cd omniflixhub git fetch --all git checkout v0.2.2 make install omniflixhubd version ``` 1. stop node if it is running ``` sudo systemctl stop omniflixhubd ``` 2. reset node ``` omniflixhubd unsafe-reset-all ``` 3. download mostrecentsnapshot ``` wget http://45.72.100.124:8181/flixnet-2-81100-40GB.tar ``` 4. Extract tar file ``` tar -xvf flixnet-2-81100-40GB.tar ``` 5. replace extracted data directory with node data directory ``` mv data ~/.omniflixhub/ ``` 6. restart node ``` sudo systemctl restart omniflixhubd ``` 7. check logs ``` sudo journalctl -f -u omniflixhubd ``` 8. delete downloaded snapshot ``` rm flixnet-2-81100-40GB.tar ```