在 Debian Buster 中從終端關閉計算機

在 Debian Buster 中從終端關閉計算機

在 Debian buster 中使用終端關閉電腦並重新啟動電腦的命令是什麼?我使用的是KDE版本。

答案1

很簡單。作為 root 用戶:

# reboot

重新啟動指令僅適用於 root 使用者。如果您以普通用戶身份登錄,請嘗試使用 sudo:

$ sudo reboot

答案2

Linux 文件說:

halt, poweroff, reboot - Halt, power-off or reboot the machine

These are legacy commands available for compatibility only.

目前核准的方法是關閉

對於那些危機時刻,Google飼養大象

答案3

reboot, 和命令shutdown( shutdown -r) 位於/usr/sbin(通常需要 root privs/ 的管理命令中sudo,如果您是普通用戶,則可能不在您的常規路徑中。

在現代系統上,它們是systemctl [verb]:的別名sudo systemctl reboot

相關內容