Laptop does not wake up after suspension

Recently, I encountered a problem: my laptop does not wake up after suspension (both manually and automatically).
Here are the results of journalctl -b -1: https://0x0.st/XtxB.txt
neofetch:
image
I appreciate any help you can provide.

Try setting up “Preserve video memory after suspend” as described here: https://wiki.archlinux.org/title/NVIDIA/Tips_and_tricks#Preserve_video_memory_after_suspend

You can add a kernel module parameter by creating a config in etc/modprobe.d/ with an editor like Nano:

sudo nano /etc/modprobe.d/nvidia-preserve-memory.conf

Paste in the options for the kernel module parameter:

options nvidia NVreg_PreserveVideoMemoryAllocations=1

Save and exit out of the file. Then rebuild the initramfs.

sudo dracut-rebuild

Finally, enable the services mentioned in the article.

sudo systemctl enable --now nvidia-suspend.service nvidia-hibernate.service nvidia-resume.service

I used a similar script here. It seems to be worked.

Nice one, glad to hear it. Welcome to the community by the way. :wave:

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.