在Linux服务器上,有多种方法可以关机
使用shutdown
命令:
sudo shutdown -h now
sudo shutdown -h [小时]:[分钟]
(例如:sudo shutdown -h 23:00
表示在23点关机)sudo shutdown -r now
sudo shutdown -r [小时]:[分钟]
(例如:sudo shutdown -r 08:30
表示在早上8点30分重启)使用poweroff
命令:
sudo poweroff
sudo poweroff -r
使用init
命令:
sudo init 0
sudo init 6
使用systemctl
命令(适用于使用systemd的系统):
sudo systemctl poweroff
sudo systemctl reboot
请注意,执行这些命令通常需要管理员权限。在执行这些命令之前,请确保您了解它们的功能,并在可能的情况下先保存所有正在进行的工作。