A good[ish] website
Web development blog, loads of UI and JavaScript topics
A quick post on how to restart or turn of a unix-like server.
There are 4 commands that all can restart or shutdown a machine:
shutdown
reboot
halt
poweroff
Many of them can achieve the same things, but this cacophony of commands guarantees backwards compatibility. This post uses the shutdown
and reboot
commands exclusively.
Log into the server, if you haven’t already:
$ ssh bob@example.com
Then type in:
$ reboot
If you’re not in as root, you need the sudo
it:
$ sudo reboot
It takes a minute or two to boot.
If you run shutdown without params:
$ shutdown
It will schedule the shutdown in one minute. But it can be cancelled using the -c
flag:
$ shutdown -c
The now
param shuts the system down immediately:
$ shutdown now
If you shutdown a cloud VPS server, you usually start it back up from the provider’s control panel. The shutdown
command is more handy on computers you actually have in your house, like a Raspberry PI for example.
Comments would go here, but the commenting system isn’t ready yet, sorry.