LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-25-2017, 10:19 AM   #1
summit
Member
 
Registered: Nov 2010
Posts: 59

Rep: Reputation: 0
Problem in enabling wifi


Dear Friends,
Greetings!

I have dual boot (Windows 10 and Ubuntu 16.04). In windows, wifi and internet is working well but in ubuntu, wifi is not enabled and I am not able to connect it with internet. I have also tried with Live usb ubuntu and reinstalling of ubuntu in laptop.

Anybody have any solution to enable wifi so that I can use internet.

Thanks.
Best regards,

Summit
 
Old 01-25-2017, 10:36 AM   #2
summit
Member
 
Registered: Nov 2010
Posts: 59

Original Poster
Rep: Reputation: 0
here is the screenshot
Attached Thumbnails
Click image for larger version

Name:	IMG_2285.JPG
Views:	34
Size:	37.4 KB
ID:	24052  

Last edited by summit; 01-25-2017 at 10:37 AM.
 
Old 01-25-2017, 11:01 AM   #3
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,976
Blog Entries: 33

Rep: Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467
summit,

Open a Terminal and type these commands separately, pressing enter after each one:

Code:
ifconfig

sudo lshw -C network

sudo rfkill list
Post the output in CODE (#) tags (above text box).
 
Old 01-25-2017, 11:01 AM   #4
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,604
Blog Entries: 19

Rep: Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458
We need to know a lot more about your set-up in order to help.

1) What wifi card do you have? You can find out quickly by opening a terminal and typing lspci.

2) Has the kernel recognised your card and loaded the correct driver for it? The dmesg command will list all the kernel's boot-up messages but it's a big list and network cards are usually recognised right at the end. That's the bit of the output you need to check. Post the relevant lines here.

3) If the card has been recognised, has the interface actually come up? Look in /sys/class/net or run ifconfig as suggested above. There should be an interface with a name beginning with w: it might be wlan0 or something like wl1p25s.

4) If the interface is up, the problem lies between it and your wifi router. We shall need to know what networking software you are using (NetworkManager? Wicd? Something else?)

Once you know where in this sequence the blockage is occurring, we can start to help you fix it.
 
Old 01-25-2017, 11:40 AM   #5
summit
Member
 
Registered: Nov 2010
Posts: 59

Original Poster
Rep: Reputation: 0
Output of ifconfig
Attached Thumbnails
Click image for larger version

Name:	IMG_2289.JPG
Views:	32
Size:	125.9 KB
ID:	24053  
 
Old 01-25-2017, 11:48 AM   #6
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,604
Blog Entries: 19

Rep: Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458Reputation: 4458
So you've got an ethernet interface but no wifi interface. This probably means that the failure is at step 2. You still haven't told us what card you have. Find that out and then look at the end of dmesg as suggested to find out what the kernel has made of your card.

A common cause of this sort of problem is cards like the Broadcom ones, which require firmware to load before they can be used. Fortunately the kernel is very informative about such problems and will tell you if it was asked to load firmware and couldn't find it.
 
Old 01-25-2017, 02:16 PM   #7
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by summit View Post
Anybody have any solution to enable wifi so that I can use internet.
Hi...

We still need more information concerning your wireless adapter. If you can, please connect an ethernet cable from your modem/router (to establish an internet connection,) then open a terminal and enter these commands...

Code:
wget -N -t 5 -T 10 https://github.com/UbuntuForums/wireless-info/raw/master/wireless-info && \
chmod +x wireless-info && \
./wireless-info
Then post the results (or a link to them) in your next reply. If you are unable to use an ethernet cable, you can either transfer the information using a thumb drive or you can post screenshots of the results of these commands...

Code:
lspci -nnk | grep -i net -A2
Code:
iwconfig
Code:
lsmod
If this is a laptop, please also include the results of...

Code:
rfkill list
If you are using a USB adapter, please include these results...

Code:
lsusb
Thanks!

Last edited by ardvark71; 01-25-2017 at 02:17 PM. Reason: Added wordage.
 
Old 01-25-2017, 02:38 PM   #8
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,976
Blog Entries: 33

Rep: Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467Reputation: 1467
summit,

This LQ "sticky" on Broadcom wifi should help:

http://www.linuxquestions.org/questi...ux-4175434970/
 
2 members found this post helpful.
Old 01-25-2017, 03:07 PM   #9
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by beachboy2 View Post
summit,

This LQ "sticky" on Broadcom wifi should help:

http://www.linuxquestions.org/questi...ux-4175434970/
Hi...

We don't even know if the OP has a broadcom adapter yet, unless I missed something.

Regards...
 
Old 01-25-2017, 07:21 PM   #10
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
$ sudo ifconfig -a

If that doesn't show one that starts with w, then your wifi driver is not preset or not working. You could be missing some firmware or other things.

$ dmesg | grep -i firmware

Otherwise to verify the existance of the hardware.

$ lspci -nnk

$ lsusb
 
Old 01-25-2017, 07:23 PM   #11
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
Also, you can pipe the output to file which you can cut and paste instead of taking screen shots / pictures. Albeit hard to post to the internet without an internet connection.

$ lspci -nnk 2>&1 | tee output.log
 
Old 01-26-2017, 12:52 PM   #12
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,661

Rep: Reputation: 7970Reputation: 7970Reputation: 7970Reputation: 7970Reputation: 7970Reputation: 7970Reputation: 7970Reputation: 7970Reputation: 7970Reputation: 7970Reputation: 7970
Quote:
Originally Posted by summit View Post
Dear Friends,

I have dual boot (Windows 10 and Ubuntu 16.04). In windows, wifi and internet is working well but in ubuntu, wifi is not enabled and I am not able to connect it with internet. I have also tried with Live usb ubuntu and reinstalling of ubuntu in laptop.

Anybody have any solution to enable wifi so that I can use internet.
Similar to the thread you opened months ago, where you were asked numerous times for details/information, but didn't provide much.

If it's the same laptop as mentioned there, you have an Intel wifi card, probably with the integrated bluetooth. Numerous solutions exist:
http://askubuntu.com/questions/82779...s-card-to-work
https://help.ubuntu.com/community/Wi...CardsSupported
https://help.ubuntu.com/stable/ubunt...are-check.html
 
Old 01-26-2017, 06:53 PM   #13
Brains
Senior Member
 
Registered: Apr 2009
Distribution: All OS except Apple
Posts: 1,591

Rep: Reputation: 389Reputation: 389Reputation: 389Reputation: 389
And...
CLEAN YOUR ROOM!
It'll help with concentration. Make the bed also, helps remove tension which leads to better focus.
 
Old 01-27-2017, 06:42 AM   #14
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,883
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
I think there's good advice earlier in this thread asking for the PCI status to determine what, if any WIFI adapter the system has.

At this point it's best to let the OP answer and also to stay on topic if there are any further replies.
 
Old 02-05-2017, 03:13 AM   #15
summit
Member
 
Registered: Nov 2010
Posts: 59

Original Poster
Rep: Reputation: 0
Question

Dear Friends,

Sorry for inconvenience. I was not able to access internet so I was sending screen shots from my phone but some how someone don't like this so I have no other option to send all this.

I have made a text file and please find the attachment. All of you have tried to help me. Now, I have copy paste the output of the commands which was asked above.

Again extremely sorry friends.

Thanks.
With best regards,
Summit.
Attached Files
File Type: txt file1.txt (67.0 KB, 11 views)
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
enabling wifi UMESHASNANI Linux - Newbie 3 06-07-2016 11:07 AM
enabling wifi UMESHASNANI Linux - Newbie 5 06-06-2016 08:58 PM
Enabling Wifi Penguins! Linux - Networking 9 04-12-2016 05:19 PM
a problem enabling wifi on netbook running ubuntu 10.4 arielsegal Linux - Networking 2 06-03-2010 05:02 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:56 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration