[SOLVED] Wifi option not visible on Ubuntu
Issue:
Option for switching on Wifi not visible in Settings
Fix:
Enable USB Tethering on Phone and connect to internet
Reinstall Linux Firmware
sudo apt install --reinstall linux-firmwareReboot system
sudo reboot
Reason:
I had reinstalled kernel hoping it would fix GPU drivers.. but it seems that corrupted the wifi service. reinstalling linux-firmware package fixed it
Attempts and Troubleshooting:
Checked if Network Manager service was running
sudo systemctl status NetworkManager.service
--> service running but no wifi detectedForce restarted NetworkManager service
sudo systemctl restart NetworkManager.service
sudo systemctl restart NetworkManager
--> no changesEnabling wifi radio through terminal
nmcli radio wifi on
nmcli device wifi list
error: no wifi device foundChecking wifi hardware
lspci | grep -i wireless
--> adapter detected in hardwareChecking if driver loaded
lsmod | grep iwlwifi
--> error: driver not loadedManually loading driver
sudo modprobe iwlwifi
--> failed to loadChecking firmware files
ls /lib/firmware/iwlwifi-*
--> files present but not loadingUpdating system and reinstalling network-manager
sudo apt update && sudo apt upgrade
sudo apt install network-manager
--> no changes but now which nmcli works
Comments
Post a Comment