Skip to content

Instantly share code, notes, and snippets.

@oren-l
Last active August 26, 2019 18:29
Show Gist options
  • Save oren-l/776129da87c20e114cb87610d3a7e952 to your computer and use it in GitHub Desktop.
Save oren-l/776129da87c20e114cb87610d3a7e952 to your computer and use it in GitHub Desktop.
Solution for Ubuntu suspend not resuming previous state
Issue: After waking up from suspend, the system does not resume the previous state.
Hardware: Dell Vostro 5481 i5 8265U
OS: Ubuntu 18.04.1
Solution:
from https://ubuntuforums.org/showthread.php?t=1556934
1. create folder '/etc/grub' -- `sudo mkdir /etc/grub`
2. create file `/etc/grub/default` and add the following line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_sleep=nonvs"
3. run `sudo update-grub`
4. reboot
That's it!
@kongo
Copy link

kongo commented Mar 31, 2019

Thank you sooo much. It helped.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment