Shutdown / Reboot Linux from the Command Line

Posted on May 16th, 2008 in Basics by admin
  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