Results 1 to 9 of 9
i have a compaq presario c700 which has the mysterious dell wlan 1390 mini pci card
i have installed the driver with bcm43xx and my light is working but the ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 05-25-2008 #1Just Joined!
- Join Date
- Apr 2008
- Posts
- 13
dell wireless 1390wlan mini pci card not working
i have a compaq presario c700 which has the mysterious dell wlan 1390 mini pci card
i have installed the driver with bcm43xx and my light is working but the command
does not come up with any networksCode:iwlist eth0 scanning
the code
shows up my interface but still i cant get any networksCode:iwconfig
- 05-25-2008 #2
did you scan as root?
if you scan as a normal user it just shows the last result of the scan and since you dont have any result you will find no networkLinux and me it's a love story
- 05-25-2008 #3
The bcm43xx driver module requires firmware to be installed before it will work correctly. Firmware is not installed by default, so if you did not install it, it is not installed. Look at the output of this command for any errors:
Also, the bcm43xx driver is no longer used. The b43 driver has replaced it. It is available in newer kernels. (>= 2.6.18) It may not be compiled into the earlier 2.6.18 kernels, but it is available with a re-compile.Code:dmesg
http://linuxwireless.org/en/users/Drivers/b43
You did not post your distro version or kernel version. This type of info should be posted when asking for help.Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 05-26-2008 #4Just Joined!
- Join Date
- Apr 2008
- Posts
- 13
i use debian..i have kernel version 2.6.22
the code dmesgshows no errors as far as the driver is concerned and my light is up and running!
i usually log in as root so that might not be the problem
- 05-26-2008 #5Just Joined!
- Join Date
- Apr 2008
- Posts
- 13
thanx guys!!!it finally worked
i finally decided to settle for ndiswrapper ..i installed it ,plus a new kernel for my debian machine 2.6.22-3-686....plus the headers for this kernel.
in the fileput the lineCode:/etc/modprobe.conf
then hit the codeCode:alias wlan0 ndiswrapper
which showed my interface wlan0Code:iwconfig
finally the codegave me some metworks and now am enjoying the net in linuxCode:iwlist wlan0 scanning
thanx guys!!!!!!
- 05-27-2008 #6
When you use NDISwrapper, you usually need to blacklist the b43 (or bcm43xx) module to keep it from loading. If NDISwrapper and b43 are loading at the same time, your wireless will not work.
In the file /etc/modprobe.d/blacklist add this to the bottom of the file:
This will prevent it from automatically loading.Code:blacklist b43
Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 05-28-2008 #7Just Joined!
- Join Date
- Apr 2008
- Posts
- 13
thanx waterhead!!!! i have done that already and my card is working okey
- 05-28-2008 #8Just Joined!
- Join Date
- Apr 2008
- Posts
- 13
thanx waterhead...i have done that and my card is working alright...but i need to know which file to adit so that the driver can load at startup
- 05-28-2008 #9Linux Guru
- Join Date
- Nov 2004
- Posts
- 6,110
Which distro are you using? Distros using the newer b43 driver instead of bcm43xx need to unload ssb before loading ndiswrapper. This becomes a problem if your ethernet driver is b44 which means you need to write a script to unload ssb, load ndiswrapper then allow ssb to load again with b44.
We can cross that bridge when we come to it though...for now what distro are you using, and can you post the output from the following commandsCode:/sbin/lsmod |grep -i ssb /sbin/lsmod |grep -i b4 uname -r


Reply With Quote
