Kernel Version: 6.14.2-300.fc42.x86_64
Fedora Version: 42
KDE Plasma Version: 6.3.4
GPU: NVIDIA GeForce RTX 4060 Laptop GPU
GPU Driver Version: 570.133.07
I moved my Lenovo 15ARP9 laptop over to Fedora, and the issue I’m currently having is that my laptop will not properly come back out of sleep. If it is selected, the display completely turns off and will not turn back on. Keyboard appears to be recognizing my inputs, or at least it lights up. I can also hear the fans kicking back on in my laptop.
The only thing that has led to a hacky “solution” has been editing /usr/bin/nvidia-sleep.sh
to include the line exit 0
at the beginning. This leads me to believe it’s a possible bug involving the nvidia 570.133.07 driver, but as someone still newer to Linux I have no idea.
### /usr/bin/nvidia-sleep.sh
----------------------------------------------
#!/usr/bin/bash
## Inserted “exit 0” line
exit 0
if [ ! -f /proc/driver/nvidia/suspend ]; then
exit 0
fi
The main issue is that this still doesn’t solve the problem, it only skips sleep completely. Just sends the laptop straight to the login screen. Honestly, I’m posting here as I am at a complete loss for any sort of solution.
Also the other solution I saw and tried that did not work was editing etc/default/grub
to include acpi.ec_no_wakeup=1
at #GRUB_CMDLINE_LINUX
.