Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 23

Thread: Broadcom BCM4312 card not working on Dell Vostro 1520 runninmg Jaunty

  1. #11
    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 08:24 PM.

  2. #12
    Join Date
    Apr 2007
    Location
    Mount Horeb, WI
    Beans
    4,312
    Distro
    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

  3. #13
    Join Date
    Apr 2007
    Location
    Mount Horeb, WI
    Beans
    4,312
    Distro
    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 05:51 AM.

  4. #14
    Join Date
    Dec 2007
    Beans
    29
    Distro
    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"

  5. #15
    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: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 24th, 2009 at 01:58 AM.

  6. #16
    Join Date
    Dec 2007
    Beans
    29
    Distro
    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: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.

  7. #17
    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 !

  8. #18
    Join Date
    Jun 2009
    Beans
    3
    Distro
    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 05:40 AM. Reason: misspelling

  9. #19
    Join Date
    Apr 2007
    Beans
    45
    Distro
    Ubuntu 12.04 Precise Pangolin

    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!!!

  10. #20
    Join Date
    Jun 2009
    Beans
    10

    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

Page 2 of 3 FirstFirst 123 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •