reboot

There are many tools and commands to shut down and reboot the system, one of these tools is reboot, which can be used to reboot or shut down the system without using the graphical environment.

To turn off the system using reboot, you can use -p or --poweroff:

root@Saman:~# reboot -p
or
root@Saman:~# reboot --poweroff

Stopping or halting the system is a state in which all CPU activities are stopped, but the system is still on. This mode can be used for low-level repairs (hardware).

root@Saman:~# reboot --halt 

Shutdown or quick system reboot:

root@Saman:~# reboot -f
or
root@Saman:~# reboot --force

System reboot without sending message to users:

root@Saman:~# reboot --no-wall
or
root@Saman:~# reboot -d

help

man

Last updated