|
We are making progress... let's continue our troubleshooting.
Are you using the Realtek 2.5GbE Ethernet adapter #1 or #2 or the Mediatek WiFi 6 RZ608 aka Mediatek MT7931e (in Linux) network card card?!?
Before we make a permanent script...
If using Realtek 2.5GbE Ethernet adapter #1 or #2, open terminal (CRTL+ALT+T) and type;
sudo modprobe -r r8169
sudo modprobe -i r8169
If using the WiFi 6 RZ608 aka Mediatek MT7931e then open terminal (CTRL+ALT+X) and type;
By the way, modprobe -r xxxxx will unload kernel module driver while -i reloads it
modprobe -r mt7921e
modprobe -i mt7921e
before closing Terminal, you may want to play safe and restart the network manager service by typing;
sudo service network-manager restart
If it works then we'll create a script in our /lib/systemd/system-sleep/ folder, put proper permissions then all should be fine. In other words, when using Linux on GTR5, if the machine goes in sleep mode, and wake it up, Linux will call our script and return to normal (just like Windows 11 does it... kind of...) |
|