在Linux中,有多種方法可以關(guān)機(jī)或重啟計(jì)算機(jī)
使用shutdown
命令:
關(guān)機(jī)命令:
sudo shutdown -h now
重啟命令:
sudo shutdown -r now
其中,-h
表示關(guān)機(jī),-r
表示重啟,now
表示立即執(zhí)行。
使用poweroff
命令:
關(guān)機(jī)命令:
sudo poweroff
重啟命令:
sudo poweroff -r
使用init
命令:
關(guān)機(jī)命令:
sudo init 0
重啟命令:
sudo init 6
其中,0
表示關(guān)機(jī),6
表示重啟。
使用systemctl
命令(適用于使用systemd的系統(tǒng)):
關(guān)機(jī)命令:
sudo systemctl poweroff
重啟命令:
sudo systemctl reboot
請注意,執(zhí)行這些命令通常需要管理員權(quán)限,因此在命令前加上sudo
。