在Linux中,有多种方法可以关机或重启计算机
-
使用
shutdown
命令:关机命令:
sudo shutdown -h now
重启命令:
sudo shutdown -r now
其中,
-h
表示关机,-r
表示重启,now
表示立即执行。 -
使用
poweroff
命令:关机命令:
sudo poweroff
重启命令:
sudo poweroff -r
-
使用
init
命令:关机命令:
sudo init 0
重启命令:
sudo init 6
其中,
0
表示关机,6
表示重启。 -
使用
systemctl
命令(适用于使用systemd的系统):关机命令:
sudo systemctl poweroff
重启命令:
sudo systemctl reboot
请注意,执行这些命令通常需要管理员权限,因此在命令前加上sudo
。