LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 02-24-2008, 11:17 AM   #1
Astral Projection
Member
 
Registered: Apr 2006
Location: Parallel Universe
Posts: 49

Rep: Reputation: 15
Broadcom BCM4318 wireless adapter wont work...


Hi.
I'm trying to install BCM4318 wlan adapter and I cannot do it. First I tried with bcm4xx-fwcutter and that did not work. Then I tried with ndiswrapper and I could see my wlan card on iwconfig but I couldn't connect to it. Then I tried new drivers (b43-fwcutter) and I could see my wlan card. However, I could not connect to it from another computer nor connect with it to another computer... Then I've unloaded b43 modules and I decided to try with ndiswrapper again but now I cannot see my wlan card. I've blacklisted b43 and bcm43xx modules.
ndiswrapper -l shows me:
Code:
shiva:/home/astral# ndiswrapper -l
bcmwl5 : driver installed
        device (14E4:4318) present (alternate driver: ssb)
lspci:
Code:
shiva:/home/astral# lspci -v
02:01.0 Network controller: Broadcom Corporation BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller (rev 02)
        Subsystem: ASUSTeK Computer Inc. Unknown device 100f
        Flags: bus master, fast devsel, latency 32, IRQ 20
        Memory at fbc04000 (32-bit, non-prefetchable) [size=8K]
iwconfig:
Code:
shiva:/home/astral# iwconfig
lo        no wireless extensions.

eth0      no wireless extensions.

sit0      no wireless extensions.
dmesg:
Code:
shiva:/home/astral# dmesg | grep ndis
ndiswrapper version 1.52 loaded (smp=yes, preempt=no)
usbcore: registered new interface driver ndiswrapper
lsmod:
Code:
shiva:/home/astral# lsmod |grep ndis
ndiswrapper           174588  0
usbcore               132940  4 ndiswrapper,ehci_hcd,uhci_hcd
I should say that this is ASUS WL 138gE PCI WLAN Card, and I'm using Debian sid\lenny
Can I somehow make this card work?
 
Old 02-24-2008, 11:35 AM   #2
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
The network card is already controlled by the ssb module as in the ndiswrapper -l command says. You need to blacklist that module as well as the b43 before ndiswrapper can control the card.

Brian
 
Old 02-25-2008, 01:06 PM   #3
Astral Projection
Member
 
Registered: Apr 2006
Location: Parallel Universe
Posts: 49

Original Poster
Rep: Reputation: 15
Well I blacklisted ssb and loaded ndiswrapper again but I cannot see wlan adapter on iwconfig \ ifconfig -a

Code:
shiva:~# lsmod | grep ssb
shiva:~# lsmod | grep ndiswrapper
ndiswrapper           174588  0
usbcore               132940  4 ndiswrapper,ehci_hcd,uhci_hcd
Code:
shiva:~# iwconfig
lo        no wireless extensions.

eth0      no wireless extensions.

sit0      no wireless extensions.
 
Old 02-26-2008, 03:17 PM   #4
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
What does ' ndiswrapper -l ' say now.

Brian
 
Old 02-26-2008, 07:28 PM   #5
Astral Projection
Member
 
Registered: Apr 2006
Location: Parallel Universe
Posts: 49

Original Poster
Rep: Reputation: 15
same:

shiva:~# ndiswrapper -l
bcmwl5 : driver installed
device (14E4:4318) present (alternate driver: ssb)
 
Old 02-28-2008, 04:16 PM   #6
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
The ssb driver is still loaded. Try it this way as root.
rmmod ndiswrapper
rmmod ssb
rmmod b43
modprobe ndiswrapper
Then run the ndiswrapper -l and see what it says.

Brian
 
Old 02-29-2008, 09:03 AM   #7
Astral Projection
Member
 
Registered: Apr 2006
Location: Parallel Universe
Posts: 49

Original Poster
Rep: Reputation: 15
Quote:
shiva:~# rmmod ndiswrapper
shiva:~# rmmod ssb
shiva:~# rmmod b43
ERROR: Module b43 does not exist in /proc/modules
shiva:~# modprobe ndiswrapper
shiva:~# ndiswrapper -l
bcmwl5 : driver installed
device (14E4:4318) present (alternate driver: ssb)
shiva:~# iwconfig
lo no wireless extensions.

eth0 no wireless extensions.

sit0 no wireless extensions.

shiva:~# lsmod | grep ssb
I think it is not loaded, but i dont know why iwconfig wont recognize my wlan card...
 
Old 03-01-2008, 10:27 AM   #8
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
List the loaded modules at this point.
/sbin/lsmod

Brian
 
Old 03-01-2008, 12:18 PM   #9
Lenard
Senior Member
 
Registered: Dec 2005
Location: Indiana
Distribution: RHEL/CentOS/SL 5 i386 and x86_64 pata for IDE in use
Posts: 4,790

Rep: Reputation: 58
1. The bcm43xx, b43 and ssb need to be blacklisted (as you have already done).
2: The ndiswrapper -l output is normal and expected.
3. Create the alias for the driver alias wlan0 ndiswrapper replace the b43/bcm/ssb alias
 
Old 03-01-2008, 05:04 PM   #10
Astral Projection
Member
 
Registered: Apr 2006
Location: Parallel Universe
Posts: 49

Original Poster
Rep: Reputation: 15
I managed to make wlan adapter work via ndiswrapper.. But only way to make it work is first to load b43 module, then rmmod ssb, b43, ndsiwrapper.. and then load ndiswrapper module again.. can I make ndiswrapper to load on startup? i've blacklisted ssb but it loads after every reboot. Same thing happens on my laptop: I've blacklisted ath_pci module, but it loads anyway... What is the problem?

Last edited by Astral Projection; 03-01-2008 at 05:06 PM.
 
Old 03-03-2008, 03:56 PM   #11
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
you need to set the alias of wlan0 in your /etc/modprobe.conf
alias wlan0 ndiswrapper

Brian
 
Old 03-03-2008, 04:06 PM   #12
Astral Projection
Member
 
Registered: Apr 2006
Location: Parallel Universe
Posts: 49

Original Poster
Rep: Reputation: 15
I have that in modprobe.conf
 
Old 03-03-2008, 04:25 PM   #13
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
It might help to post some info about the machine and what are in some of the files at this point.
Post the name of the blacklist file and its contents.
Post contents of /etc/modprobe.conf
Post output of the following commands.
/sbin/lsmod
/sbin/lspci -v
/sbin/ifconfig -a
/sbin/iwconfig

Brian
 
Old 03-03-2008, 04:31 PM   #14
Astral Projection
Member
 
Registered: Apr 2006
Location: Parallel Universe
Posts: 49

Original Poster
Rep: Reputation: 15
actually i have that in /etc/modprobe.d/ndiswrapper
i dont have /etc/modprobe.conf... only /etc/modules.conf
 
Old 03-03-2008, 05:07 PM   #15
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
Post your /etc/modules.conf file
Also post the kernel version. ' uname -r '
If 2.6 kernel I would think using modprobe.conf would be perfered over modules.conf. Unless this is a 2.4 kernel. I also don't use the distro in your sig but maybe what is required. Maybe to blacklist a file requires a different step or file to do so. But would also like to see the contents of what i mentioned. I feel that will get us closer to the root.

Brian
 
  


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
broadcom wireless wont work on suse 10.3 crsn263 Linux - Newbie 19 11-21-2007 05:06 PM
Friend is looking on how to download Broadcom air force one BCM4318 wireless card Devilman501 Linux - General 1 11-12-2007 12:30 AM
Broadcom bcm4318 fedora 6 wireless jzimm0007@msn.com Linux - Wireless Networking 1 10-11-2007 05:40 AM
Wireless Trouble, Broadcom BCM4318, Gateway 7510 GX laptop Davschm Fedora 3 12-10-2006 10:28 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

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