Abort a pending Linux shutdown quickly from the shell and learn fallbacks for different scheduling methods. 11.02.2026 | reading time: 2 min You scheduled a shutdown and now need to abort it; this short guide shows the exact command to stop a pending shutdown, demonstrates it in a quick example, and points to alternatives if the usual method does not apply. Try it live ```bash sudo shutdown +10 "Maintenance" Broadcast message from root@host (pts/0) at 14:00 ... The system will shut down in 10 minutes. sudo shutdown -c Broadcast message from root@host (pts/0): Shutdown cancelled ``` What to watch for Use `shutdown -c` as root or via `sudo` to cancel a pending shutdown; if the shutdown was queued with `at` inspect `atq` and remove the job with `atrm`, and if a systemd timer triggered a shutdown check `systemctl list-timers` and stop the offending timer with `systemctl stop`; as a last resort identify and terminate the shutdown process with a targeted kill such as `pkill -f 'shutdown'`. Quick toolbox notes Remember that `shutdown -c` sends a broadcast to logged-in users and requires privileges; scheduled tasks may come from `at` jobs, `cron` entries or systemd timers, and messages use `wall`; check logs with `journalctl` or syslog files to find what scheduled the action. Final thought Canceling a shutdown is a small operation with big impact; practice the commands, learn how different schedulers work, and consider deeper study to build reliable system administration skills at bitsandbytes.academy while preparing for CompTIA Linux+ or LPIC-1. Join Bits & Bytes Academy First class LINUX exam preparation. utilities processes troubleshooting boot-process scripting