Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Main Support Categories > Networking & Wireless
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Networking & Wireless
Having problems getting connected to the internet or getting your wireless card to work? Ask here.

 
Thread Tools Display Modes
Old June 23rd, 2009   #11
Mark2322
First Cup of Ubuntu
 
Join Date: Jun 2009
Beans: 7
Lightbulb Re: Broadcom BCM4312 card not working on Dell Vostro 1520 runninmg Jaunty

This is how I got wireless driver to work on a dell inspiron600m laptop. Keep in mind I am a noobie but this may help a little. I am using the broadcom 4311 drivers so hope this helps. This was on a fresh install too. Okay, after some tinkering around I was able to get them to work. I will try to recite the procedure to the best of my knowledge as I didn't write it down. I first used an ethernet connection and opened the terminal and entered sudo apt-get install ndisgtk. I entered my password for the sudo command and it automatically installed ndiswrapper-utils-1.9. Then I had to blacklist native drivers by entering the following commands in the terminal:
echo -e "blacklist bcm43xx\nblacklist b43\nblacklist b43legacy\nblacklist ssb"
then entered:
sudo tee -a /etc/modprobe.d/blacklist
Okay then without closing the terminal, I opened another and entered:
sudo ndiswrapper -i ~/drivers/drivername.inf
Now I had already downloaded the drivers for my wireless card and opened
the .exe file in archive manager and extracted the .sys files and the only.inf file
to a folder on the desktop which I named drivers
So in my case I entered sudo ndiswrapper -i ~/drivers/bcmwl5.inf
then went to windows wireless drivers in system/administration/windows wireless drivers
and chose to install new driver. I pointed it to the .inf file in the folder I named drivers
and installed. It gave me an error message saying that hardware was not present but the windows
wireless drivers window said hardware was present so I rebooted and was able to connect to my gateway
I hope this helps because I know I am not the only on with this problem. However I am using a dell
inspiron so it may not work for everyone but it should point you in the right direction if you are having trouble

Last edited by Mark2322; June 23rd, 2009 at 03:24 PM..
Mark2322 is offline   Reply With Quote
Old June 23rd, 2009   #12
Ayuthia
Ubuntu addict and loving it
 
Join Date: Apr 2007
Location: Mount Horeb, WI
Beans: 4,065
Kubuntu Development Release
Re: Broadcom BCM4312 card not working on Dell Vostro 1520 runninmg Jaunty

Quote:
Originally Posted by Bit101 View Post
bit@tau:~$ lsmod|grep -e b43 -e ssb -e wl -e ndis
ssb 41220 1 b44
ndiswrapper 193436 0
wl 1281236 0
ieee80211_crypt 13444 2 ieee80211_crypt_tkip,wl
[/CODE]
This is showing ndiswrapper and wl running at the same time. Which one are you trying to use? If you are using ndiswrapper, try the following:
Code:
sudo modprobe -r b44 ssb ndiswrapper wl
sudo modprobe ndiswrapper
sudo modprobe b44
sudo iwlist scan
If you are trying to use the Broadcom STA (wl) module, try the following:
Code:
modprobe -r b44 ssb ndiswrapper wl
sudo modprobe wl
sudo iwlist scan
Ayuthia is offline   Reply With Quote
Old June 23rd, 2009   #13
Ayuthia
Ubuntu addict and loving it
 
Join Date: Apr 2007
Location: Mount Horeb, WI
Beans: 4,065
Kubuntu Development Release
Re: Broadcom BCM4312 card not working on Dell Vostro 1520 runninmg Jaunty

organadino and cadcamjim-
If you are using the Broadcom STA option, can you check and see if the following command produces a wl.ko file:
Code:
ls /lib/modules/2.6.28-13-generic/volatile/wl.ko
If it does not, please try the following:
Code:
sudo /etc/init.d/linux-restricted-modules-common start
sudo depmod -a
sudo modprobe wl
sudo iwlist scan

Last edited by Ayuthia; June 24th, 2009 at 12:51 AM..
Ayuthia is offline   Reply With Quote
Old June 23rd, 2009   #14
Bit101
5 Cups of Ubuntu
 
Join Date: Dec 2007
Beans: 29
Ubuntu 9.10 Karmic Koala
Re: Broadcom BCM4312 card not working on Dell Vostro 1520 runninmg Jaunty

Quote:
Originally Posted by Ayuthia View Post
This is showing ndiswrapper and wl running at the same time. Which one are you trying to use? If you are using ndiswrapper, try the following:
Code:
sudo modprobe -r b44 ssb ndiswrapper wl
sudo modprobe ndiswrapper
sudo modprobe b44
sudo iwlist scan
If you are trying to use the Broadcom STA (wl) module, try the following:
Code:
modprobe -r b44 ssb ndiswrapper wl
sudo modprobe wl
sudo iwlist scan
Still no wireless. the ndiswrapper one stopped eth1 from working and using wl produced
Code:
bit@tau:~$ sudo iwlist scan
lo        Interface doesn't support scanning.

eth0      Interface doesn't support scanning.

pan0      Interface doesn't support scanning.

eth1      Scan completed :
          Cell 01 - Address: 00:18:01:F3:21:CD
                    ESSID:"SLZG3"
                    Mode:Managed
                    Frequency:2.462 GHz (Channel 11)
                    Quality:5/5  Signal level:-39 dBm  Noise level:-92 dBm
                    Encryption key:on
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
                              11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
                              48 Mb/s; 54 Mb/s
However, when I try to connect using wicd it never gets past "obtaining IP address"
Bit101 is offline   Reply With Quote
Old June 23rd, 2009   #15
jay_tee
First Cup of Ubuntu
 
Join Date: Jun 2009
Beans: 5
Re: Broadcom BCM4312 card not working on Dell Vostro 1520 runninmg Jaunty

Quote:
Originally Posted by Bit101 View Post
I upgraded my Ubuntu 9.04 box today with the latest updates, and now my wireless won't work (A Broadcom BCM4312). I think it might have to do with an updated kernel.
If in the past you've had success with wifi on Jaunty with BCM4312, and find that it recently has stopped working, you may wish to check my comments in this topic:
http://ubuntuforums.org/showthread.php?t=1189752
BTW, I'm running kernel 2.6.28-13. Once I backed-out the recent hal-related updates (0.5.12~rc+git20090403-0ubuntu3), my BCM4312 began working automagically again. YMMV.

Last edited by jay_tee; June 23rd, 2009 at 08:58 PM..
jay_tee is offline   Reply With Quote
Old June 23rd, 2009   #16
Bit101
5 Cups of Ubuntu
 
Join Date: Dec 2007
Beans: 29
Ubuntu 9.10 Karmic Koala
Re: Broadcom BCM4312 card not working on Dell Vostro 1520 runninmg Jaunty

Quote:
Originally Posted by jay_tee View Post
If in the past you've had success with wifi on Jaunty with BCM4312, and find that it recently has stopped working, you may wish to check my comments in this topic:
http://ubuntuforums.org/showthread.php?t=1189752
BTW, I'm running kernel 2.6.28-13. Once I backed-out the recent hal-related updates (0.5.12~rc+git20090403-0ubuntu3), my BCM4312 began working automagically again. YMMV.
If i ever find you in real life, i'm going to hug you It worked like a charm. Thanks man.
Bit101 is offline   Reply With Quote
Old June 23rd, 2009   #17
jay_tee
First Cup of Ubuntu
 
Join Date: Jun 2009
Beans: 5
Re: Broadcom BCM4312 card not working on Dell Vostro 1520 runninmg Jaunty

Quote:
Originally Posted by Bit101 View Post
If i ever find you in real life, i'm going to hug you It worked like a charm. Thanks man.
You are quite welcome, I'm happy to have been of help !
jay_tee is offline   Reply With Quote
Old June 23rd, 2009   #18
zostay
First Cup of Ubuntu
 
zostay's Avatar
 
Join Date: Jun 2009
Beans: 3
Ubuntu 9.04 Jaunty Jackalope
Talking Re: Broadcom BCM4312 card not working on Dell Vostro 1520 runninmg Jaunty

I ended up with a different solution. It would appear that something went awry during the install of a package or something. I ran:

Code:
sudo /sbin/lrm-manager
sudo modprobe wl
The FATAL message I was getting, was apparently an indicator that that command had not been run successfully after the install (or so I guess, since I don't understand what that command does ).

Last edited by zostay; June 24th, 2009 at 12:40 AM.. Reason: misspelling
zostay is offline   Reply With Quote
Old June 23rd, 2009   #19
gtaluvit
5 Cups of Ubuntu
 
Join Date: Apr 2007
Beans: 21
Re: Broadcom BCM4312 card not working on Dell Vostro 1520 runninmg Jaunty

Quote:
Originally Posted by zostay View Post
I ended up with a different solution. It would appear that something went awry during the install of a package or something. I ran:

Code:
sudo /sbin/lrm-manager
sudo modeprobe wl
The FATAL message I was getting, was apparently an indicator that that command had not been run successfully after the install (or so I guess, since I don't understand what that command does ).
This worked for me. Wireless has been sketchy for the last couple days but an ubuntu-mobile update (kernel modules) killed it today. This fixed it. THANKS!!!
gtaluvit is offline   Reply With Quote
Old June 24th, 2009   #20
ogranadino
First Cup of Ubuntu
 
Join Date: Jun 2009
Beans: 4
Re: Broadcom BCM4312 card not working on Dell Vostro 1520 runninmg Jaunty

I downgraded the HAL libraries (from xxxUbuntu3 to xxxUbuntu1 and block the version in synaptic) but when ubuntu loads whit kernel XXX-13 still the wifi adapter do not work.. but when I boot whit kernel XXX-11 its detected and works properly with kernel XXX-11.

This what I get with kernel XXX-11:

oscar@oscar-laptop:~$ iwconfig
lo no wireless extensions.

eth0 no wireless extensions.

eth1 IEEE 802.11 Nickname:""
Access Point: Not-Associated
Link Quality:5 Signal level:202 Noise level:177
Rx invalid nwid:0 invalid crypt:0 invalid misc:0

vboxnet0 no wireless extensions.

pan0 no wireless extensions.



this is what I get with kernel XXX-13:

oscar@oscar-laptop:~$ iwconfig

eth0 no wireless extensions.

vboxnet0 no wireless extensions.

pan0 no wireless extensions.


Im using a dell inspiron 13, with adapter Broadcom Corporation NetLink BCM5906M Fast Ethernet PCI Express (rev 02)
Broadcom Corporation BCM4312 802.11b/g (rev 01)

Im suing network-manager version 0.7.1~rc4.1-0Ubuntu2
ogranadino is offline   Reply With Quote

Bookmarks

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

Forum Jump


All times are GMT -4. The time now is 11:26 PM.


vBulletin ©2000 - 2010, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. bilberry