Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 656 Bytes

Desmos.md

File metadata and controls

23 lines (20 loc) · 656 Bytes

Download latest snapshot (using the example of Desmos)

Stop Desmos service
systemctl stop desmos.service

Remove old data in directory ~/.desmos/data

rm -rf ~/.desmos/data; \
mkdir -p ~/.desmos/data; \
cd ~/.desmos/data

Download snapshot

SNAP_NAME=$(curl -s http://135.181.60.250:8084/desmos/ | egrep -o ">desmos.*tar" | tr -d ">"); \
wget -O - http://135.181.60.250:8084/desmos/${SNAP_NAME} | tar xf -

alt text

Start service and check logs

systemctl start desmos.service; \
journalctl -u desmos.service -f --no-hostname