11 ms·
I run sudo shutdown +15 (or other amount of minutes) when I need a compute instance and don’t want to forget to turn it off. It’s a simple trick that will sav
by hendiatris 8mo ago
I run
sudo shutdown +15 (or other amount of minutes)
when I need a compute instance and don’t want to forget to turn it off. It’s a simple trick that will save you in some cases.
- tln 8mo agoSort of like cancelling Disney right after signing up for the free trial.. nice!
- apawloski 8mo agoFor expensive GPU instances I have a crontab one-liner that shuts the node down after 2 hours if I don't touch an override file (/var/run/keepalive). /5 * * * [ -f /var/run/keepalive ] && [ $(( $(date +\%s) - $(stat -c \%Y /var/run/keepalive) )) -gt 7200 ] && shutdown -h now