Ubuntu 20.04 LTS does not shutdown on HP Desktop
When shutting down screen goes black but power light does not go off. I even left it overnight and the power light remained on.
Solution 1:
If the HP desktop that you are using is similar to the All-in-One machines that I've supported in the past, then you may need to make a slight modification to your Grub file to disable ACPI warnings, which can keep a computer active.
Here's how you can do it:
- Open a Terminal (if it's not already open)
- Edit your
/etc/default/grub
file withsudo
:
Note: Be sure to replacesudo {editor of choice} /etc/default/grub
{editor of choice}
with your editor of choice. - Find the line that starts
GRUB_CMDLINE_LINUX_DEFAULT
and addacpi=off
to the end of the line, but inside the quotes. For example:GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=off"
- Save the file and exit
- Update Grub:
Note: This step is important. If you skip it, then the change will not be applied no matter how many times you reboot.sudo update-grub
- Restart your computer
Hopefully this allows your rest-deprived HP to shut down properly 👍🏻