14

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
  • 2,044
Amartya Roy
  • 151
  • 1
  • 1
  • 3

4 Answers4

30

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.

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.

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,376
  • 5
  • 34
  • 52
C0deDaedalus
  • 2,575
  • 4
  • 14
  • 19