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:
shutdownreboothaltpoweroffMany 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.comThen type in:
$ rebootIf you’re not in as root, you need the sudo it:
$ sudo rebootIt takes a minute or two to boot.
If you run shutdown without params:
$ shutdownIt will schedule the shutdown in one minute. But it can be cancelled using the -c flag:
$ shutdown -cThe now param shuts the system down immediately:
$ shutdown nowIf 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.