LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Bodhi
User Name
Password
Bodhi This forum is for the discussion of Bodhi Linux.

Notices


Reply
  Search this Thread
Old 03-14-2019, 04:05 PM   #1
pappo46
LQ Newbie
 
Registered: Mar 2019
Location: SW Virginia
Distribution: Bhodilinux
Posts: 6

Rep: Reputation: Disabled
Cannot get Wifi working


I am only able to connect with a wired connection.
I did the lspci and lshw and I have a BCM43 network card.

I did a "sudo apt-get install bcmwl-kernel-source

lspci -nnk shows:

Broadcom Inc BCM4311 802.11b/g WLAN
Kernel modules: ssb, wl

When I try to setup the wifi using network connections I used wlan0 as the device. Is that correct?
Any help would be appreciated.
 
Old 03-14-2019, 04:50 PM   #2
the_waiter
Bodhi Developer
 
Registered: Jun 2018
Location: Banská Bystrica, Slovakia
Distribution: Bodhi Linux
Posts: 864

Rep: Reputation: 665Reputation: 665Reputation: 665Reputation: 665Reputation: 665Reputation: 665
Hello

Maybe you need to have kernel headers installed. Can you post the terminal outcome here when you try installing the package?

S
 
1 members found this post helpful.
Old 03-14-2019, 05:45 PM   #3
pappo46
LQ Newbie
 
Registered: Mar 2019
Location: SW Virginia
Distribution: Bhodilinux
Posts: 6

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by the_waiter View Post
Hello

Maybe you need to have kernel headers installed. Can you post the terminal outcome here when you try installing the package?

S
What package are you talking about ?
 
1 members found this post helpful.
Old 03-14-2019, 05:57 PM   #4
pappo46
LQ Newbie
 
Registered: Mar 2019
Location: SW Virginia
Distribution: Bhodilinux
Posts: 6

Original Poster
Rep: Reputation: Disabled
If you meant the install of kernel-source, here it is:

Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
bcmwl-kernel-source
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/1,518 kB of archives.
After this operation, 7,179 kB of additional disk space will be used.
Selecting previously unselected package bcmwl-kernel-source.
(Reading database ... 146762 files and directories currently installed.)
Preparing to unpack .../bcmwl-kernel-source_6.30.223.271+bdcom-0ubuntu4_i386.deb ...
Unpacking bcmwl-kernel-source (6.30.223.271+bdcom-0ubuntu4) ...
Setting up bcmwl-kernel-source (6.30.223.271+bdcom-0ubuntu4) ...
Loading new bcmwl-6.30.223.271+bdcom DKMS files...
Building for 4.9.0-6-686
Building for architecture i686
Building initial module for 4.9.0-6-686
Done.

wl:
Running module version sanity check.
- Original module
- No original module exists within this kernel
- Installation
- Installing to /lib/modules/4.9.0-6-686/updates/dkms/

depmod.......

DKMS: install completed.
update-initramfs: deferring update (trigger activated)
Processing triggers for initramfs-tools (0.130ubuntu3.7) ...
update-initramfs: Generating /boot/initrd.img-4.9.0-6-686
 
1 members found this post helpful.
Old 03-14-2019, 10:33 PM   #5
cordx
Member
 
Registered: Oct 2018
Location: texas
Distribution: bodhi 5.1.0
Posts: 797

Rep: Reputation: 184Reputation: 184
Quote:
Originally Posted by pappo46 View Post
When I try to setup the wifi using network connections I used wlan0 as the device. Is that correct?
Any help would be appreciated.
when i run
Code:
lshw -C network
i can see the connection name after "logical name:" as well as the name and version of the installed driver under configuration. is that where you got wlan0? what happened when you tried to set up the wifi connection? did you see any networks listed?
 
Old 03-15-2019, 08:20 AM   #6
pappo46
LQ Newbie
 
Registered: Mar 2019
Location: SW Virginia
Distribution: Bhodilinux
Posts: 6

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by cordx View Post
when i run
Code:
lshw -C network
i can see the connection name after "logical name:" as well as the name and version of the installed driver under configuration. is that where you got wlan0? what happened when you tried to set up the wifi connection? did you see any networks listed?
I used wlan0 because that is what it always was on my other Ubuntu systems. You are right, I should not assume wlan0.

This is my output of lshw -C network

*-network UNCLAIMED
description: Network controller
product: BCM4311 802.11b/g WLAN
vendor: Broadcom Inc. and subsidiaries
physical id: 0
bus info: pci@0000:02:00.0
version: 01
width: 32 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: latency=0
resources: memory:d6000000-d6003fff
*-network
description: Ethernet interface
product: PRO/100 VE Network Connection
vendor: Intel Corporation
physical id: 8
bus info: pci@0000:05:08.0
logical name: enp5s8
version: 02
serial: 00:16:36:ef:8d:11
size: 100Mbit/s
capacity: 100Mbit/s
 
Old 03-15-2019, 09:38 AM   #7
cordx
Member
 
Registered: Oct 2018
Location: texas
Distribution: bodhi 5.1.0
Posts: 797

Rep: Reputation: 184Reputation: 184
i have found a couple places that say the same thing. the first link below is much more detailed and recently updated. i wanted to add the second for completeness and to show the first should work.

the overall gist is that you need to purge bcmwl-kernel-source:

Quote:
For example, if you have previously installed the bcmwl-kernel-source package, you will need to remove it by using the purge method:

Code:
sudo apt-get purge bcmwl-kernel-source
install a different broadcom driver with:
Code:
sudo apt install firmware-b43-installer
and possibly make an adjustment to the module

Quote:
In some particular cases, after installing the firmware-b43-installer you need to remove the b43 module, enable it again and even proceed to unblock with rfkill:

Code:
sudo modprobe -r b43
 sudo modprobe b43    
 sudo rfkill unblock all
https://askubuntu.com/questions/5586...=votes#tab-top

https://ubuntuforums.org/showthread....9#post13181379
 
Old 03-15-2019, 10:16 AM   #8
pappo46
LQ Newbie
 
Registered: Mar 2019
Location: SW Virginia
Distribution: Bhodilinux
Posts: 6

Original Poster
Rep: Reputation: Disabled
cordx

Thank you very much. I had done the kernel-source remove/delete before but I did not know about the modprobe:

sudo modprobe -r b43
sudo modprobe b43
sudo rfkill unblock all

I had to apt-get install rfkill, because it wasn't installed, but after that it worked.
Here is my lshw -C network output now:

*-network
description: Wireless interface
product: BCM4311 802.11b/g WLAN
vendor: Broadcom Inc. and subsidiaries
physical id: 0
bus info: pci@0000:02:00.0
logical name: wlan0
version: 01
serial: 00:1a:73:1f:c9:de
width: 32 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless

Many thanks.

Regards

Phillip
 
1 members found this post helpful.
Old 03-15-2019, 10:20 PM   #9
cordx
Member
 
Registered: Oct 2018
Location: texas
Distribution: bodhi 5.1.0
Posts: 797

Rep: Reputation: 184Reputation: 184
i'm glad to hear you are up and running. i had to play with modprobe a little in debian to get my wifi going. looks like you got that wlan0 back after all if you have the chance and inclination to mark the thread as solved, that might help others who wander in with a similar issue.
 
Old 03-16-2019, 09:53 AM   #10
pappo46
LQ Newbie
 
Registered: Mar 2019
Location: SW Virginia
Distribution: Bhodilinux
Posts: 6

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by cordx View Post
i'm glad to hear you are up and running. i had to play with modprobe a little in debian to get my wifi going. looks like you got that wlan0 back after all if you have the chance and inclination to mark the thread as solved, that might help others who wander in with a similar issue.
I did mark it solved. Thanks again for your help.

Last edited by pappo46; 03-16-2019 at 09:54 AM.
 
1 members found this post helpful.
  


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
Wifi option is there but no wifi scanning or wifi not working Aakash447 Linux - Newbie 3 06-28-2018 11:48 PM
Can connect to cellphone through WIFI HOTSPOT, but cannot connect to my own WIFI network diegoandresalvarez Linux - Networking 7 10-22-2016 11:54 AM
Want to share my wifi by creating a wifi hotspot ( While staying connected to wifi)? shadyXV Linux - Desktop 4 07-20-2015 05:37 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Bodhi

All times are GMT -5. The time now is 12:48 PM.

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