
Originally Posted by
robert99999
So, I assume that it's either a hardware or firmware problem. The only way I know to get the wifi back up and running, is to reboot the computer. Is there some way just to reboot the wifi without completely rebooting the computer?
Yes, there is a little shortcut.
You have to find the driver which is used by your wifi:-
Code:
sudo lshw -C network 2>&1 | grep wireless | grep driver
My result is:-
Code:
redact@redact:~$ sudo lshw -C network 2>&1 | grep wireless | grep driver
[sudo] password for redact:
configuration: broadcast=yes driver=iwlwifi driverversion=5.4.0-62-generic firmware=29.1654887522.0 latency=0 link=no multicast=yes wireless=IEEE 802.11
Then, via the terminal:-
Code:
sudo modprobe -r iwlwifi && sudo modprobe iwlwifi
The second command will unload and reload the kernel module iwlwifi (Intel wifi in this example)
Substitute the answer from step one in step two.
Any joy?
Bookmarks