View Poll Results: Did it work?

Voters
5. You may not vote on this poll
  • Yes

    3 60.00%
  • No

    2 40.00%
Results 1 to 8 of 8

Thread: Howto: Getting your Broadcom 43xx wireless Card working in Hardy (step by step)

  1. #1
    Join Date
    Jan 2008
    Location
    Beverton, OR
    Beans
    4
    Distro
    Ubuntu 8.04 Hardy Heron

    Talking Howto: Getting your Broadcom 43xx wireless Card working in Hardy (step by step)

    Alright first things first, this is a how to for Ndiswrapper, and not for fwcutter. With that being said lets begin.

    1.) Getting ride of fwcutter.
    sudo aptitude remove b43-fwcutter

    Alright now that we have fwcutter off the block lets work on getting Hardy ready for Ndiswrapper.

    2.) Ndiswrapper workaround for Hardy.

    sudo gedit /etc/init.d/wirelessfix.sh

    and paste this:

    Quote:
    #!/bin/bash

    modprobe -r b44
    modprobe -r b43
    modprobe -r b43legacy
    modprobe -r ssb
    modprobe -r ndiswrapper
    modprobe ndiswrapper
    modprobe b44
    into the file. Close and save it.

    Next, run this:

    Code:

    cd /etc/init.d/ && sudo chmod 755 wirelessfix.sh

    and finally, this:

    Code:

    sudo update-rc.d wirelessfix.sh defaults

    Now that we have that problem all worked out lets move on to figuring out which Broadcom card you have in your laptop!

    3.) Getting the specs. on your Broadcom card!


    lspci | grep Broadcom\ Corporation (and) lspci -n | grep '14e4:43'


    4.) Now that you know what Broadcom wireless chip set your using go to this link and download the right drivers for you model! The Link (Note: I would follow my Instructions on setting up Ndiswrapper and installing your driver. Just use this link to download the correct broadcom driver!)

    5.) Getting the Newest Ndiswrapepr ( I usually do everything in root, however if your not in root use sudo before "apt-get", going root in terminal just enter "sudo -i")

    apt-get update
    apt-get install ndiswrapper-utils-1.9
    apt-get install build-essential
    apt-get install linux-headers-`uname -r`

    Now you should have the latest Version of Ndiswrapper installed.

    6.) Removing bcm43xx

    rmmod bcm43xx
    modprobe ndiswrapper

    7.) Now Extract your Broadcom wireless Driver

    unzip -a (your driver) example= "unzip -a sp33008.exe"

    8.) Now that your driver is extracted navigate to the directory your bcmwl5.inf file is and install it using these commands.

    ndiswrapper -i bcmwl5.inf
    ndiswrapper -l
    ndiswrapper -m
    echo ndiswrapper >> /etc/modules

    (note: there is no need to blacklist anything!)

    Restart and enjoy using Wireless!!!

  2. #2
    Join Date
    Apr 2007
    Location
    Mount Horeb, WI
    Beans
    4,312
    Distro
    Kubuntu Development Release

    Re: Howto: Getting your Broadcom 43xx wireless Card working in Hardy (step by step)

    Quote Originally Posted by travislucas View Post
    apt-get install build-essential
    apt-get install linux-headers-`uname -r`
    Just wanted to add a comment. You don't really need to install build-essential and linux-headers-`uname -r`. They are only needed if you are going to compile ndiswrapper. This guide is using the repository package instead of the compiled version.

  3. #3
    Join Date
    Jul 2008
    Beans
    1

    Re: Howto: Getting your Broadcom 43xx wireless Card working in Hardy (step by step)

    Thanks for the tutorial. I got it working now.

  4. #4
    Join Date
    Dec 2007
    Location
    Boston, MA
    Beans
    49
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Howto: Getting your Broadcom 43xx wireless Card working in Hardy (step by step)

    I get this message when I try to unzip...

    root@ubuntu-3000:~# modprobe ndiswrapper
    root@ubuntu-3000:~# unzip -a sp33008.exe
    unzip: cannot find or open sp33008.exe, sp33008.exe.zip or sp33008.exe.ZIP.
    root@ubuntu-3000:~# ndiswrapper -i bcmwl5.inf
    couldn't open bcmwl5.inf: No such file or directory at /usr/sbin/ndiswrapper-1.9 line 219.

  5. #5
    Join Date
    Apr 2007
    Location
    Mount Horeb, WI
    Beans
    4,312
    Distro
    Kubuntu Development Release

    Re: Howto: Getting your Broadcom 43xx wireless Card working in Hardy (step by step)

    Quote Originally Posted by Jeenyus View Post
    I get this message when I try to unzip...

    root@ubuntu-3000:~# modprobe ndiswrapper
    root@ubuntu-3000:~# unzip -a sp33008.exe
    unzip: cannot find or open sp33008.exe, sp33008.exe.zip or sp33008.exe.ZIP.
    root@ubuntu-3000:~# ndiswrapper -i bcmwl5.inf
    couldn't open bcmwl5.inf: No such file or directory at /usr/sbin/ndiswrapper-1.9 line 219.
    What travislucas was saying is that you will need to find the driver that works for your card. If you have downloaded the sp33008.exe file, then you can extract the file with unzip or sometimes you might have to use cabextract.

    If you are not sure about what driver you will need, you can check out this link:
    https://help.ubuntu.com/community/Wi...eisty_No-Fluff

    It has some good recommendations.

  6. #6
    Join Date
    Dec 2007
    Location
    Boston, MA
    Beans
    49
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Howto: Getting your Broadcom 43xx wireless Card working in Hardy (step by step)

    Quote Originally Posted by Ayuthia View Post
    What travislucas was saying is that you will need to find the driver that works for your card. If you have downloaded the sp33008.exe file, then you can extract the file with unzip or sometimes you might have to use cabextract.

    If you are not sure about what driver you will need, you can check out this link:
    https://help.ubuntu.com/community/Wi...eisty_No-Fluff

    It has some good recommendations.
    I followed the guide to download the correct drivers (which was the sp33008.exe) but got that error when I reached that step in the guide. However, after getting that error, I went a tried another guide I found on the forums, got a couple steps into that guide, got an error message, and just checked my wireless networks and the wireless just started working. I have no idea why it is working, however it is so I think I'm just going to leave it alone for the time being.

  7. #7
    Join Date
    Oct 2008
    Beans
    6

    Re: Howto: Getting your Broadcom 43xx wireless Card working in Hardy (step by step)

    I unzipped the file to my desktop so the bcmwl5.inf is in my desktop directory. In the terminal, I navigate to the desktop and run the line:

    Code:
    ndiswrapper -i bcmwl5.inf
    but get this response:
    Code:
     couldn't create /etc/ndiswrapper/bcmwl5: Permission denied at /usr/sbin/ndiswrapper-1.9 line 194.
    can anyone tell me what went wrong and/or how to fix it?

    Thanks!

  8. #8
    Join Date
    Jul 2008
    Beans
    871
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Howto: Getting your Broadcom 43xx wireless Card working in Hardy (step by step)

    You need to run ndiswrapper with the sudo command to get that working. Try:
    Code:
    sudo ndiswrapper -i bcm15.inf
    Any piece of knowledge I acquire today has a value at this moment exactly proportioned to my skill to deal with it. Tomorrow, when I know more, I recall that piece of knowledge and use it better.
    -Mark Van Doren

Tags for this Thread

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
  •