The laptop works great with minimal issues. But when I close the lid to suspend the system and reopen it again, it crashes by logging me in and out repeatedly while flickering the black screen. Restarting the laptop solves the issue, but it's unreasonable to go on without being able to close the lid.
Asked
Active
Viewed 963 times
1 Answers
0
It was a hardware issue. My laptop is Razor Blade. I found this link about my laptop's common issues with ubuntu. The solution was:
- Edit the default grub config:
sudo nano /etc/default/grub
- Add
button.lid_init_state=opento the end of theGRUB_CMDLINE_LINUX_DEFAULToption, like this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash button.lid_init_state=open"
- Make changes permanent:
sudo update-grub
Then restart.
Other things I've tried:
- Make swap area
- turn acpi off
- all solutions here
- changing graphics driver
- reinstalling graphics drivers
- switch from gdm3 to lightdm
- disable nvidia hibernate
- switch GPU from nvidia to intel and vice versa
Gin
- 89