Home > Article > System Tutorial > How to use linux reboot command reboot
Linux reboot command reboot is used to reboot the system, shut down processes and unmount the file system. Options include: -f to force a reboot; -h to shut down and then restart the system; -p to reboot to BIOS settings; -w to write to the changed buffer. Usage examples: reboot (normal reboot); reboot -f (forced reboot); reboot -w (write buffer); reboot -p (reboot to BIOS).
Usage of Linux restart command reboot
Restart command reboot
## The #reboot command is used to reboot a Linux system. It shuts down all running processes, unmounts the file system, and restarts the kernel.Syntax:
<code>reboot [OPTION]...</code>
Options:
Usage example:
Normally, use the following command to restart the system:<code>reboot</code>
Use -f Option to force a reboot:
<code>reboot -f</code>
Use the -w option to write the changed buffer to disk:
<code>reboot -w</code>
Reboot to the BIOS setup interface:
<code>reboot -p</code>
Note:
The above is the detailed content of How to use linux reboot command reboot. For more information, please follow other related articles on the PHP Chinese website!