## Download latest snapshot (using the example of Stargaze) Stop Sentinel service ``` systemctl stop sentinel.service ``` Remove old data in directory `~/.sentinelhub/data` ``` rm -rf ~/.sentinelhub/data; \ mkdir -p ~/.sentinelhub/data; \ cd ~/.sentinelhub/data ``` Download snapshot through `aria2c` ```bash SNAP_LINK="https://snapshots.alexvalidator.com/sentinel/" SNAP_NAME=$(curl -s ${SNAP_LINK} | egrep -o ">sentinelhub-2.*tar" | tr -d ">") aria2c -x2 ${SNAP_LINK}${SNAP_NAME} tar -xf ${SNAP_NAME} rm -rf ${SNAP_NAME} ``` Download snapshot through `wget` ```bash SNAP_NAME=$(curl -s https://snapshots.alexvalidator.com/sentinel/ | egrep -o ">sentinelhub-2.*tar" | tr -d ">"); \ wget -O - https://snapshots.alexvalidator.com/sentinel/${SNAP_NAME} | tar xf - ``` Start service and check logs ``` systemctl start sentinel.service; \ journalctl -u sentinel.service -f --no-hostname ```