When I want to turn off my laptop It doesn't power off. The screen power off, but the laptop still making noise, and the work indicator is on. It powers off when the battery becomes empty. I don't know what to do. Can't you help me?
- Manufacturer: HP
- Product Name: HP Laptop 15-bw0xx
- Processor: AMD® A12-9720p radeon r7, 12 compute cores 4c+8g × 4
- Graphics: AMD® Radeon (tm) r7 m340 / AMD® Radeon r7 graphics
- OS name: Ubuntu 20.04.3 LTS
- SSD: 256,1 GB
- RAM: 7,2 GiB
sudo shutdown now, poweroff -p and systemctl poweroff doesn't help me. The laptop still doesn't power off.
2 Answers
You can shut down from the command line (terminal) you will need to be root to do this;
sudo -i
shutdown -h nowsudo -i - changes you to the root user, you may be asked to confirm your password.
shutdown -h now - this issues the halt command 'now' which should cause the OS to go through the shutdown process. See
If there is a problem, you should see output on the terminal window, and in /var/log/syslog
If you are not able to shutdown in the GUI, possibly your user does not have permission, see
I had the same problem and it was due to the Linux kernel upgrade to version 5.11.0-41.
You can try and confirm if that's the problem by booting to an older kernel version (5.11.0-40) in Advanced Options of GRUB.
If that is the case, you can definitely fix it by downgrading to version 5.11.0-40:
sudo apt remove linux-image-5.11.0-41-generic linux-headers-5.11.0-41-genericAnd then reboot.