Files
cheatsheet-tldr/tldr/linux/systemctl-soft-reboot
2025-10-14 00:19:04 +00:00

26 lines
567 B
Plaintext

---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# systemctl soft-reboot
> Shut down and reboot userspace, leaving the kernel running.
> More information: <https://www.freedesktop.org/software/systemd/man/systemctl.html#soft-reboot>.
- Perform a soft reboot immediately:
`systemctl soft-reboot`
- Force a soft reboot:
`systemctl soft-reboot --force`
- Schedule a soft reboot for a specific time:
`systemctl soft-reboot --when "{{timestamp}}"`
- Cancel a scheduled soft reboot:
`systemctl soft-reboot --when cancel`