在 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.

目前批准的方法是关闭

对于那些危机时刻,谷歌饲养大象

答案3

reboot、 和命令shutdown( shutdown -r) 位于/usr/sbin(通常需要 root privs/ 的管理命令中sudo,如果您是普通用户,则可能不在您的常规路径中。

在现代系统上,它们是systemctl [verb]:的别名sudo systemctl reboot

相关内容