在Linux中,有多种方法可以用来重启系统
使用shutdown
命令:
sudo shutdown -h now
sudo shutdown -r now
sudo shutdown -h +5
(5分钟后关闭)sudo shutdown -r +5
(5分钟后重启)使用reboot
命令:
sudo reboot
使用systemctl
命令(适用于使用systemd的系统):
sudo systemctl poweroff
sudo systemctl reboot
使用init
命令(适用于较旧的系统):
sudo init 0
sudo init 6
常见问题:
sudo
或以root用户身份运行命令。shutdown -h
表示关闭系统,shutdown -r
表示重启系统。/var/log/syslog
或journalctl
命令)以获取更多信息。systemctl
命令。如果您遇到其他问题,请随时提问。