在Linux中,有多种方法可以用来关机
使用shutdown
命令:
sudo shutdown -h now
sudo shutdown -h +2
sudo shutdown -c
使用poweroff
命令:
sudo poweroff
使用init
命令:
sudo init 0
使用systemctl
命令(适用于使用systemd的系统):
sudo systemctl poweroff
请注意,执行这些命令通常需要管理员权限(使用sudo
)。在使用这些命令时,请确保您了解它们的功能,以免意外关机。