HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

systemctl soft-reboot — Shut down and reboot userspace, leaving the kernel running. More information: <https://www.freedeskt

Submitted by: @import:tldr-pages··
0
Viewed 0 times
shutsystemctl soft-rebootdowncommandrebootandcliuserspace
linux

Problem

How to use the systemctl soft-reboot command: Shut down and reboot userspace, leaving the kernel running. More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#soft-reboot>.

Solution

systemctl soft-reboot — Shut down and reboot userspace, leaving the kernel running. More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#soft-reboot>.

Perform a soft reboot immediately:
systemctl soft-reboot


Force a soft reboot:
systemctl soft-reboot {{[-f|--force]}}


Schedule a soft reboot for a specific time:
systemctl soft-reboot --when "{{timestamp}}"


Cancel a scheduled soft reboot:
systemctl soft-reboot --when cancel

Code Snippets

Perform a soft reboot immediately

systemctl soft-reboot

Force a soft reboot

systemctl soft-reboot {{[-f|--force]}}

Schedule a soft reboot for a specific time

systemctl soft-reboot --when "{{timestamp}}"

Cancel a scheduled soft reboot

systemctl soft-reboot --when cancel

Context

tldr-pages: linux/systemctl soft-reboot

Revisions (0)

No revisions yet.