在Linux中,有多種方法可以用來(lái)關(guān)機(jī)
使用shutdown
命令:
sudo shutdown -h now
sudo shutdown -h +2
sudo shutdown -c
使用poweroff
命令:
sudo poweroff
使用init
命令:
sudo init 0
使用systemctl
命令(適用于使用systemd的系統(tǒng)):
sudo systemctl poweroff
請(qǐng)注意,執(zhí)行這些命令通常需要管理員權(quán)限(使用sudo
)。在使用這些命令時(shí),請(qǐng)確保您了解它們的功能,以免意外關(guān)機(jī)。