08-18-2023, 02:06 AM
I think you should disabling power management for the wireless adapter: Sometimes, power management settings can cause issues with resuming after hibernate. You can try disabling power management for the wireless adapter by creating a configuration file. Run the following command to create the file:
Add the following line to the file:
Save the file (Ctrl+O) and exit (Ctrl+X).
Code:
bash
sudo nano /etc/udev/rules.d/10-wifi-power-management.rules
Add the following line to the file:
Code:
ACTION=="add", SUBSYSTEM=="net", KERNEL=="wlan*", RUN+="/usr/bin/iw dev %k set power_save off"
Save the file (Ctrl+O) and exit (Ctrl+X).