Linux Comm Reboot
# Linux reboot command
[ Linux Command Manual](#)
The Linux reboot command is used to restart the computer.
If the system's runlevel is 0 or 6, it will reboot the system. Otherwise, it will use the shutdown command (with the -r parameter) as a substitute.
### Syntax
reboot
**Parameters**:
* -n : Do not write memory data back to the hard disk before rebooting.
* -w : Do not actually reboot, just write the record to the /var/log/wtmp file.
* -d : Do not write the record to the /var/log/wtmp file (the -n parameter includes -d).
* -f : Force reboot without calling the shutdown command.
* -i : Stop all network-related devices before rebooting.
### Example
Restart
# reboot
[ Linux Command Manual](#)
YouTip