Shutdown / Reboot Linux from the Command Line
shutdown -h now
halt
poweroff
init 0
All of these does the same thing: turns your computer off.
Rebooting Linux
Use the shutdown command with the parameter -r (reboot):
shutdown -r now
shutdown -h now
halt
poweroff
init 0
All of these does the same thing: turns your computer off.
Rebooting Linux
Use the shutdown command with the parameter -r (reboot):
shutdown -r now
Post a comment