我正在寻找不使用关机命令关闭 Ubuntu 的方法。我曾经使用电源按钮关闭电脑。/etc/acpi/events/powerbtn
这次,我必须使用电源开关物理关闭电脑(Advantec EPC-T2285)。但是,我不知道如何物理关闭Ubuntu
。
请帮助我完成此事。
答案1
从终端/ssh 提示符运行sudo shutdown -h now
以关闭服务器。也poweroff
可能有效。
答案2
对于任何用户来说,只要该用户是唯一登录的用户,就可以按如下方式关机。systemctl poweroff
答案3
你可以使用 sudoshutdown -h now
或者shutdown -r now
为了给你更多的细节,请阅读Ubuntu关闭文档
-r Requests that the system be rebooted after it has been brought down.
-h Requests that the system be either halted or powered off after it has been brought
down, with the choice as to which left up to the system.