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
4 Answers
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 Manager → Network Adapters → your network adapter → Properties → Power Management. I guess it's more of a Windows problem than Ubuntu.
- 16,703
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.
- 61
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:-
- Go to device manager
- Network adpters/ or devices
- right click on your wificard and update it
hope this will help
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
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.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> upIn my case, my wireless interface has name
wlp6s0, so the command for me was :sudo ifconfig wlp6s0 up
- 3,376
- 5
- 34
- 52
- 2,575
- 4
- 14
- 19