My laptop doesn't entirely shut down. Everything goes black but the screen is still on and I have to force shutdown.
I don't know to which package should I post this bug to. How can I determine this ?
My laptop is an Acer TimeLine X 5820T, 8GB RAM, 240 Kingston SSD, Intel Graphics version and Ubuntu Gnome 15.10 64 bit.
Best Answer
Add a specification to your grub commandline option in the
/etc/default/grub
config file. This is the option that begins withGRUB_CMDLINE_LINUX_DEFAULT
.Try adding the following
reboot=pci
to that line. The changes would be:Change from:
Change to:
After making changes to your grub configuration you will have to run the update command to activate the change:
(The $ sign is important in the line above. It's indicating a terminal commandline from the user's prompt.)
There are other reboot flags you can test if that one fails. The options includes:
warm
- don’t set the cold reboot flagcold
- set the cold reboot flagbios
- reboot by jumping through the BIOS (only for X86_32)smp
(reboot by executing reset on BSP or other CPU - only for X86_32)triple
- force a triple fault - initkbd
- use the keyboard controller. cold reset (default)acpi
- use the RESET_REG in the FADTefi
- use efi reset_system runtime servicepci
- use the so-called “PCI reset register”, CF9force
- avoid anything that could hangAlso, you can try multiple parameters at the same time such as:
Other details can be found at:
http://michalorman.com/2013/10/fix-ubuntu-freeze-during-restart