在Linux中,有多種方法可以用來重啟系統(tǒng)
使用shutdown
命令:
sudo shutdown -h now
sudo shutdown -r now
sudo shutdown -h +5
(5分鐘后關閉)sudo shutdown -r +5
(5分鐘后重啟)使用reboot
命令:
sudo reboot
使用systemctl
命令(適用于使用systemd的系統(tǒng)):
sudo systemctl poweroff
sudo systemctl reboot
使用init
命令(適用于較舊的系統(tǒng)):
sudo init 0
sudo init 6
常見問題:
sudo
或以root用戶身份運行命令。shutdown -h
表示關閉系統(tǒng),shutdown -r
表示重啟系統(tǒng)。/var/log/syslog
或journalctl
命令)以獲取更多信息。systemctl
命令。如果您遇到其他問題,請隨時提問。