Shutdown / Restart Machine
shutdown -h +30
# shutdown in 30 min
shutdown -r +60
# restart in an hour
init 6
# reboot now
shutdown now
# or
poweroff
# or
init 0
Index