Welcome to Linux Forums!

With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.

Linux Forum ArticlesLinux ForumsLinux Forum DownloadsLinux Hosts
Home|Register|FAQ|Member List|Calendar|Unanswered Posts|Forum Rules|Today's Posts|Advanced Search|
SEARCH FOR IN
Go Back   Linux Forums > Your Distro > Redhat / Fedora Linux Help
Reload this Page Dell 1500 Wireless Card Installation
Linux Forums
Linux Forums
Welcome To The Linux Forums!
Welcome to Linux Forums. We pride ourselves in being one of the largest Linux communities on the web, we encourage you to REGISTER on our forums and participate in the community. There are over 150,000 members ready to answer your questions. JOINING US today will allow you to make new posts, get support, send messages to other members and submit downloads to our downloads directory and many other great features!

Redhat / Fedora Linux Help Help and discussion related to Redhat and Fedora Linux.

Reply
 
Thread Tools Display Modes
Old 03-13-2008   #1 (permalink)
CAbs26
Just Joined!
 
Join Date: Mar 2008
Posts: 4
Dell 1500 Wireless Card Installation

Hi Everyone,

I'm trying to set up my wireless card for my Dell M1210 and I've hit a dead end.

I used ndiswrapper to install the driver and everything seems to be fine.

The problem I'm having is that wlan0 does not show up as an option for my network settings.

When i run ndiswrapper -l i get the message:

bcmwl5 : driver installed
device (14E4:432 present (alternate driver: ssb)


stating that it's installed.

Then I do a iwconfig and i get:

lo no wireless extensions.

eth0 no wireless extensions.




so there is no wlan0 like theres suppose to be.

If anyone can help I would greatly appreciate it.

Thanks!
CAbs26 is offline   Reply With Quote
Old 03-15-2008   #2 (permalink)
valemon
Linux Engineer
 
valemon's Avatar
 
Join Date: Oct 2006
Location: Volos
Posts: 850
Send a message via MSN to valemon
open the terminal and post the output of
Quote:
lspci
lsmod | grep b43
lsmod | grep ssb
__________________
Trying to become a computer engineer
openSuSE 10.3/Arch/Gutsy/Slackware 12
Linux user #442041
valemon is offline   Reply With Quote
Old 03-16-2008   #3 (permalink)
CAbs26
Just Joined!
 
Join Date: Mar 2008
Posts: 4
Thanks for the reply, here is the info:

# lspci :

00:00.0 Host bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub (rev 03)
00:01.0 PCI bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express PCI Express Root Port (rev 03)
00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01)
00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 01)
00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 01)
00:1c.3 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 4 (rev 01)
00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 01)
00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 01)
00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 01)
00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 01)
00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 01)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e1)
00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 01)
00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller (rev 01)
00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 01)
01:00.0 VGA compatible controller: nVidia Corporation G72M [GeForce Go 7400] (rev a1)
03:00.0 Ethernet controller: Broadcom Corporation BCM4401-B0 100Base-TX (rev 02)
03:01.0 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller
03:01.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 19)
03:01.2 System peripheral: Ricoh Co Ltd R5C843 MMC Host Controller (rev 0a)
03:01.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 05)
03:01.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev ff)
0c:00.0 Network controller: Broadcom Corporation BCM4328 802.11a/b/g/n (rev 01)

# lsmod | grep b43 :

(nothing returned by the console)

#lsmod | grep ssb :

ssb 30533 1 b44
CAbs26 is offline   Reply With Quote
Old 03-16-2008   #4 (permalink)
waterhead
Linux Engineer
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 1,083
It looks like the b43 driver doesn't support your wireless. So that isn't loading and interfering.
b43 - Linux Wireless

You can try removing the ssb module, but on my Dell Inspiron laptop it is used by the ethernet connection too.

Have you run all of the recommended commands after installing the driver?
Code:
depmod -a (before loading the NDISwrapper module)
ndiswrapper -m
__________________
Paul
waterhead is offline   Reply With Quote
Old 03-16-2008   #5 (permalink)
waterhead
Linux Engineer
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 1,083
I found that this seems to be a problem affecting all Linux distros. If you remove the ssb module, some have reported losing USB functions. You can read about it here:
https://bugs.launchpad.net/ubuntu/+s...ux/+bug/197558

The only solution that I can see is to unload the modules, and then reload them in a different order. Unload the b44, ssb and ndiswrapper modules (in that order). Then reload them in this order: ndiswrapper, ssb and then b44.

Look around the 'net, there are a lot of posts concerning this. And almost as many solutions.

Edit: The module ohci_hcd is also tied into this. It may also have to be removed and reloaded.
Do it in this order:
rmmod b44
rmmod ohci_hcd
rmmod ssb
rmmod ndiswrapper
modprobe ndiswrapper
modprobe ssb
modprobe ohci_hcd
modproble b44

You may be able do do this automatically by making a script to run those commands at boot.
__________________
Paul

Last edited by waterhead; 03-16-2008 at 02:20 PM. Reason: Added ohci_hcd comments
waterhead is offline   Reply With Quote
Old 03-16-2008   #6 (permalink)
valemon
Linux Engineer
 
valemon's Avatar
 
Join Date: Oct 2006
Location: Volos
Posts: 850
Send a message via MSN to valemon
With my BCM4318 I just had to remove the ssb and b43 modules. I had no problems with my usb or anything else. Also I think that this modules conflict with ndiswrapper.
__________________
Trying to become a computer engineer
openSuSE 10.3/Arch/Gutsy/Slackware 12
Linux user #442041
valemon is offline   Reply With Quote
Old 03-17-2008   #7 (permalink)
Turk
Just Joined!
 
Join Date: Jun 2006
Posts: 8
This may not be anywhere on key here, but I had a similar issue on my Dell. Ndiswrapper was installed and showing my card, but I did not have it set to load ndiswrapper on startup. So after I booted I would "modprobe ndiswrapper" and all was good afterwards. Of course now it loads on startup.
Turk is offline   Reply With Quote
Old 03-18-2008   #8 (permalink)
CAbs26
Just Joined!
 
Join Date: Mar 2008
Posts: 4
I will try what you said waterhead, and post my results.

Thanks again for the help.
CAbs26 is offline   Reply With Quote
Old 03-19-2008   #9 (permalink)
CAbs26
Just Joined!
 
Join Date: Mar 2008
Posts: 4
After 1 straight week of working on this it finally works!!!!!

Thanks waterhead!

I followed your direction and I was able to connect via my wireless card.

Thanks All!
CAbs26 is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT. The time now is 02:56 AM.




© 2000 - 2008 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.0.0