====== Чем отличается reboot от shutdown -r now ======
===== Различие команд =====
via http://www.koscheev.ru/nazlobu/?n=192
DESCRIPTION
The halt and reboot utilities flush the file system cache to disk, send
all running processes a SIGTERM (and subsequently a SIGKILL) and,
respectively, halt or restart the system. The action is logged,
including entering a shutdown record into the user accounting database.
...
Normally, the shutdown(8) utility is used when the system needs to be
halted or restarted, giving users advance warning of their impending doom
and cleanly terminating specific programs.
===== Примеры использования halt и reboot =====
**h - halt**\\
**r - reboot**
Перезагрузить компьютер
shutdown -r now
Перезагрузить компьютер через 15 минут после ввода команды
shutdown -r +15
Перезагрузить компьютер в 17:45
shutdown -r 17:45
Выключить компьютер
shutdown -h now
Выключить компьютер через 15 минут после ввода команды
shutdown -h +15
Выключить компьютер в 17:45
shutdown -h 17:45