不使用电源按钮无法关机/重启,请帮忙

不使用电源按钮无法关机/重启,请帮忙

我有一台联想 C260 台式机,它装有 Windows 8.1,我删除了它并安装了最新版本的 Ubuntu,一切正常,但是当我必须关闭计算机时,它会终止所有正在运行的进程,但机器不会关闭风扇,并且 LED 指示灯仍然亮着,我必须按住电源按钮才能手动关闭,我试过这个

sudo -i (to get a root shell, sudo gedit is not recommended)
gedit /etc/default/grub
Find the line: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Change this to: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=force"
Save the file and close the file.
Finally, in terminal: update-grub
exit (to end the root shell)

甚至sudo shutdown -h now在终端中尝试过,但这并不能关闭机器,尽管它确实关闭了系统但没有关闭机器..,我知道很多人问过这个问题,但我无法从大多数问题中得到任何解决方案..,请给出解决方案..!!

答案1

man shutdown对你有用。

sudo shutdown -P now将立即关闭系统电源。

-h 开关只会停止系统,而不会关闭系统电源。

相关内容