12

I dual booted Ubuntu 17.10 in my windows 10. While working in windows wifi works fine! But in Ubuntu it is always showing "No wifi adapter found, Make sure you have a wifi adapter plugged and turned on" Not getting any solutions online! Tried some of them but not working! Help please

ptetteh227
  • 1,904
Amartya Roy
  • 131
  • 1
  • 1
  • 3

4 Answers4

27

I had the same problem. I resolved it by unchecking the Allow the computer to turn off this device to save power option.

The otpion can be found under Device ManagerNetwork Adaptersyour network adapterPropertiesPower Management. I guess it's more of a Windows problem than Ubuntu.

  • that did the trick for me, kinda dumb but glad it solved my issue :) – Eman Sep 15 '20 at 02:08
  • 1
    This also seemed to do it for me. Unfortunately wifi adapter was also missing from windows on random reboots so I had to keep trying until it came back. – yujia21 Oct 06 '20 at 01:44
  • 1
    My card does not have a Power Management tab. Any suggestions? – Kvothe Nov 16 '20 at 18:19
  • @Kvothe Mine is an Intel card, which had an extra property MIMO Power Saving or similar. Disabling this also fixed the problem. Just look through all settings tabs of your device and you will find something with energy. – Xerusial Feb 06 '21 at 11:00
  • Same issue for me, Ubuntu 16, 18, and 20 dual booting with Windows 10 and an Intel WiFi 6 AX200. This did fix it! Go into Device Manager and choose the device, Advanced tab (of course), MIMO Power Save Mode and set to "No SMPS". It sometimes takes 2 boots into Ubuntu before the wireless card magically reappears. – Madeleine P. Vincent May 29 '21 at 11:09
6

I had that problem in Ubuntu 17.04. Wifi worked well until I booted to windows 10. When I switched back I couldn't connect to internet via WiFI (cable connection worked though).

After few hours of following tons of solutions that I found on the internet (and dozens of restarts) I turned off my laptop, removed battery and waited 15min.

I know that this isn't any solution but in my case after turning laptop on again WiFi was back.

  • Sometimes Windows will power off an adapter which stays off over rebooting. If this is the case, the solution is to shutdown instead of rebooting. Upon powering on select Ubuntu from grub menu and adapter should be powered up. – WinEunuuchs2Unix Jan 22 '18 at 00:17
  • That may be a reason since I don't remember to turning my laptop off instead of rebooting (until I removed battery). – michal2616 Jan 22 '18 at 13:52
  • Unbelievable, worked for me on Ubuntu 20.04 dual boot with WIn 10. I have a desktop so I shut down, and flipped the switch on the power supply. After a few mins I turned it on and booted to linux and wifi worked again. – polpetti Nov 17 '20 at 20:41
  • Shutting down fixed it for me on mint, now the real solution is to find a way to turn it back on automatically without shutting down if this situation happens.... But I don't even know where to begin – prw56 Sep 08 '21 at 01:08
0

i've faced this issue twice! and becuase ofthis watched hundred of videos nothing helped much but one thing noticed when i faced this issue again:-

switch to windows:-

  1. Go to device manager
  2. Network adpters/ or devices
  3. right click on your wificard and update it

hope this will help

0

First, check if Ubuntu lists any wireless devices or not by running:

iw dev | grep Interface

Then, Try Issuing iwconfig command and see If there is any wireless interface enabled or not. Then check if the wireless interface is active or not by using the ifconfig command.

It could look like this or similar now

  1. If your wireless interface is disabled (not showing up after iw dev | grep interface) you'll need to configure one. Head to this link for Wireless Network Configuration in Linux.

  2. If your wireless interface is enabled but not showing up after iwconfig, maybe it's not active. In that case just find out name of the wireless interface and type :

    sudo ifconfig <interface_name> up
    

    In my case, my wireless interface has name wlp6s0, so the command for me was :

    sudo ifconfig wlp6s0 up
    
derHugo
  • 3,356
  • 5
  • 31
  • 51
C0deDaedalus
  • 2,385
  • 4
  • 13
  • 19