溫馨提示×

linux關(guān)機(jī)命令怎樣輸

小樊
81
2024-11-15 04:36:40

在Linux中,有多種方法可以關(guān)機(jī)或重啟計(jì)算機(jī)

  1. 使用shutdown命令:

    關(guān)機(jī)命令:

    sudo shutdown -h now
    

    重啟命令:

    sudo shutdown -r now
    

    其中,-h表示關(guān)機(jī),-r表示重啟,now表示立即執(zhí)行。

  2. 使用poweroff命令:

    關(guān)機(jī)命令:

    sudo poweroff
    

    重啟命令:

    sudo poweroff -r
    
  3. 使用init命令:

    關(guān)機(jī)命令:

    sudo init 0
    

    重啟命令:

    sudo init 6
    

    其中,0表示關(guān)機(jī),6表示重啟。

  4. 使用systemctl命令(適用于使用systemd的系統(tǒng)):

    關(guān)機(jī)命令:

    sudo systemctl poweroff
    

    重啟命令:

    sudo systemctl reboot
    

請注意,執(zhí)行這些命令通常需要管理員權(quán)限,因此在命令前加上sudo

0