Find the answer to your Linux question:
Results 1 to 3 of 3
I've been trying for probably 10 hours now to get the bcm4306 driver working on Debian. I finally got it installed using ndiswrapper... However, now ndiswrapper says that the hardware ...
  1. #1
    Just Joined!
    Join Date
    Jul 2009
    Posts
    1

    Broadcom 4306 Network Controller Not Recognized

    I've been trying for probably 10 hours now to get the bcm4306 driver working on Debian. I finally got it installed using ndiswrapper... However, now ndiswrapper says that the hardware is not present! When I run lspci, though, it lists BCM4306 as the network controller. What is going on, and how do I fix it? It's on a Dell latitude D600.

  2. #2
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,144
    Hello and Welcome.
    Try starting off here and see what we can come up with.
    http://www.linuxforums.org/forum/wir...tart-here.html
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

  3. #3
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    Post the info in the wireless sticky as suggested by MikeTbob, but assuming it is a bcm4306, there is a driver included, the b43, but it requires non-free firmware.

    While connected to the internet do this
    Code:
    su -
    apt-get install b43-fwcutter
    Select yes when it asks if you want to download the firmware.

    b43-fwcutter is in the contrib section of the repos, which you may not have enabled. If not do
    Code:
    su -
    nano /etc/apt/sources.list
    Find the line that looks like
    Code:
    deb http://http.us.debian.org/debian stable main
    and change it to
    Code:
    deb http://http.us.debian.org/debian stable main contrib non-free
    I threw in non-free as well. You can leave it off if you want.

    Then (still as root)
    Code:
    apt-get update && apt-get install b43-fwcutter
    You will need to remove ndiswrapper or it will conflict with the native b43 driver. Afterwards it should work fine.

Posting Permissions

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