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 05-23-2019, 09:24 AM   #1
FredericYung
LQ Newbie
 
Registered: May 2019
Location: Belgium
Distribution: Debian 9
Posts: 4

Rep: Reputation: Disabled
Wireless network adapter not working.


Hi,
I've tried to get my network adapter working on my laptop P3 with Ubuntu 9. I downloaded a b43 fwcutter at my home page but got lost then.
This are my hardware specs. The network card is the last item.

dell@dell:~$ lspci
00:00.0 Host bridge: Intel Corporation 82830 830 Chipset Host Bridge (rev 04)
00:01.0 PCI bridge: Intel Corporation 82830 830 Chipset AGP Bridge (rev 04)
00:1d.0 USB Controller: Intel Corporation 82801CA/CAM USB Controller #1 (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 42)
00:1f.0 ISA bridge: Intel Corporation 82801CAM ISA Bridge (LPC) (rev 02)
00:1f.1 IDE interface: Intel Corporation 82801CAM IDE U100 Controller (rev 02)
00:1f.5 Multimedia audio controller: Intel Corporation 82801CA/CAM AC'97 Audio Controller (rev 02)
00:1f.6 Modem: Intel Corporation 82801CA/CAM AC'97 Modem Controller (rev 02)
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M6 LY
02:00.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado] (rev 78)
02:01.0 CardBus bridge: Texas Instruments PCI1420 PC card Cardbus Controller
02:01.1 CardBus bridge: Texas Instruments PCI1420 PC card Cardbus Controller
03:00.0 Network controller: Broadcom Corporation BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller (rev 02)

I would sincerely be happy if I could use this card (my internal card is gone).

Thanking you in advance.
 
Old 05-23-2019, 06:53 PM   #2
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
It shows the BCM4318 on the pci bus (internal). I had one of those on an old compaq presario. It was quirky to get going, but did work. A physical button for wifi on the laptop, which needed to be toggled to on or it didn't work, even with everything else setup right. In the early days of that card, I had to use ndiswrapper which was quite picky about the .sys and .inf files you used. And only worked with 32 bit drivers IIRC. Otherwise it worked.

Internal card gone would imply an external one, probably connected via USB?

$ lsusb

When not traveling I use another machine with working wifi and ethernet bridge through it. But that's just me being lazy. Plus the other machine can be in a better position for a good signal so I don't have to compute from a doorway to get network connectivity like an animal.
 
Old 05-23-2019, 07:37 PM   #3
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,363
Blog Entries: 28

Rep: Reputation: 6149Reputation: 6149Reputation: 6149Reputation: 6149Reputation: 6149Reputation: 6149Reputation: 6149Reputation: 6149Reputation: 6149Reputation: 6149Reputation: 6149
This article from the Debian Wiki might help: https://wiki.debian.org/bcm43xx
 
Old 05-25-2019, 08:37 AM   #4
FredericYung
LQ Newbie
 
Registered: May 2019
Location: Belgium
Distribution: Debian 9
Posts: 4

Original Poster
Rep: Reputation: Disabled
Thank you very much wih the quick response. I have done some tests which I'd like to share them with you.

uname -mr = 2.6.31-14-generic i686
lspci -nnk | grep -iA2 net = broadcom corp. BCM4318
sudo apt-get purge bcmwl-kernel-source = bcmwl-kernel-source not installed - removed: dkms fakeroot patch
sudo apt-get install linux-firmware-nonfree = package linux-firmwarenot found
sudo apt-get install b43-fwcutter firmware-b43-installer bcmwl = b43-fwcutter is newest version - firmware-b43-installer not found
(downloaded: b43-fwcutter_019-3_i386.deb)
sudo apt-get install firmware-b43-fwcutter_019-3_i386.deb installer = package not found
rfkill list all = no effect
dmesg | grep b43 = no effect
sudo ls -al /lib/firmware/b43 | grep ucode5.fw = not found
sudo mkdir /lib/firmware/b43 = cannot create dir: file exists
sudo modprobe b43 = all config files need .conf: /etc/modprobe.d/ndiswrapper, it will be ignored in a future release
sudo ndisgtk = no valid driver.inf file
And I'm stuck again. Any better ideas? It seems to me that the whole problem is in the missing b43 driver. Though it's at my hardware list (Broadcom b43 wireless driver) I'm unable to activate it. (no proprietary drivers are in use on this system)
With my sincere thanks.
 
Old 05-25-2019, 05:12 PM   #5
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
That's a pretty old 32 bit kernel.

$ apt-cache --names-only search fwcutter
Code:
b43-fwcutter - utility for extracting Broadcom 43xx firmware
$ apt-cache --names-only search installer | grep -i b43
Code:
firmware-b43-installer - firmware installer for the b43 driver
firmware-b43legacy-installer - firmware installer for the b43legacy driver
$ sudo apt-get install b43-fwcutter firmware-b43-installer

With a kernel and chipset that old, you wont need the "latest" versions. Although not sure if you'll need the "legacy" one over the other, doubt it. Both are mutually exclusive. There's firmware for the b43xx chipsets. Most wifi chipsets these days have firmware, and by definition those are proprietary / closed source. Hence the jank work around of a firmware cutter since the firmware itself cannot be "distributed" by other (normal?) means.
 
Old 05-25-2019, 05:15 PM   #6
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
To install a .deb, try:

$ sudo dpkg -i package.deb

Also note that the cutter only extracts the firmware from a file (to the current directory?), it does not MOVE it to the expected location to be used.
 
Old 05-27-2019, 04:44 AM   #7
FredericYung
LQ Newbie
 
Registered: May 2019
Location: Belgium
Distribution: Debian 9
Posts: 4

Original Poster
Rep: Reputation: Disabled
Thank you. Unfortunately getting not found comments
dpkg: error subproces dpkg-deb returns an error code 2.
Well, I guess that's the end of my old faithfull. I don't intent to spend money on it anymore. Let it rest in peace. Amen.
Thank you for your time.
 
Old 05-27-2019, 02:11 PM   #8
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
package.deb was implied to be firmware-b43-fwcutter_019-3_i386.deb as listed in a previous apt-get install. Which is not how one traditionally installs a .deb file by their full name. There's also other firmwares to try (via fwcutter, might need an older version of fwcutter for the --unsupported flag).

http://sources.openwrt.org/

For another chipset I required the http://sources.openwrt.org/broadcom-...0.10.5.tar.bz2 firmware where the distro would by default install the http://sources.openwrt.org/broadcom-...00.138.tar.bz2 firmware. There's also various kernel.org ways to get firmwares.
 
Old 05-27-2019, 05:05 PM   #9
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
In post #1 you said that you are running Ubuntu 9. Unless that was a typo:-

Ubuntu 9 reached it's end of life in 2010.

https://wiki.ubuntu.com/Releases

-::::::-Give Ubuntu 19.04 'Disco Dingo' a spin:-::::::-

http://releases.ubuntu.com/19.04/
 
Old 05-27-2019, 05:14 PM   #10
Drakeo
Senior Member
 
Registered: Jan 2008
Location: Urbana IL
Distribution: Slackware, Slacko,
Posts: 3,716
Blog Entries: 3

Rep: Reputation: 483Reputation: 483Reputation: 483Reputation: 483Reputation: 483
http://linuxwireless.sipsolutions.ne...s/Drivers/b43/
 
Old 05-28-2019, 05:14 AM   #11
FredericYung
LQ Newbie
 
Registered: May 2019
Location: Belgium
Distribution: Debian 9
Posts: 4

Original Poster
Rep: Reputation: Disabled
Thank you for your assistance. As a matter of fact, I have used all these options and still more and only got error messages. There's something rotten in Denmark (or Finland). PS: I cannot use the 43 legacy. Your suggestions :
sudo apt-get install firmware-b43-installer = couldn't find package
sudo /usr/sbin/install_bcm4318_firmware = no such file or directory
PS : I have the laptop since 2003 .There's nothing wrong with it except the wifi. I am thinking of installing another distro. My laptop cannot handle more than 256mb of ram. I don't know if that might help. I have set my eyes on antiX. I'll let you know.
Thanks everybody for the support.
 
  


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
[SOLVED] replaced defunct network adapter with usb wireless adapter JaLynn Linux - Networking 10 06-01-2018 12:27 PM
Linux Mint 17.1 , Wireless Connection Issues , Lenovo-ideapad-100-15IBD , on Internal Wireless RTL8723BE PCIe Wireless Network Adapter rtoney5 Linux - Laptop and Netbook 2 11-10-2016 01:52 PM
Supersede laptop's wireless adapter with usb wireless adapter rcdawson Linux - Networking 2 11-29-2015 04:03 AM
Fedora 9 and Network Adapter 3COM OfficeConnect Wireless 11g Compact USB Adapter mpharkin Linux - Newbie 1 09-20-2008 05:18 AM
Ethernet Adapter not working or Network not working... phoenix07 Linux - Hardware 2 04-09-2004 06:58 PM

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

All times are GMT -5. The time now is 03:45 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