Page 1 of 17 12311 ... LastLast
Results 1 to 10 of 162

Thread: Netgear WNA3100 issues

  1. #1
    Join Date
    Apr 2012
    Beans
    31

    Netgear WNA3100 issues

    Hi, I'm having issues getting my Netgear WNA3100 to connect to the web. I have tried every method described on these forums and none work. Can anyone help troubleshoot my problems? I'm running 12.04 64 bit. When I run lsusb I get (only listing relevant entries):
    Code:
    ...
    Bus 001 Device 003 : ID 0846:9020 Netgear, Inc. WNA3100(v1) Wireless-N 300 [Broadcom BCM43231
    
    ...
    And iwconfig gives:
    Code:
    lo   no wireless extensions
    
    etho     no wireless extensions
    I am getting access to the internet via my laptop and another wireless stick (which cannot be permanent).

    Any help will be much appreciated.

  2. #2
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Netgear WNA3100 issues

    Did you try the driver files attached? Please let me know if you need assistance removing the defective files and installing these.
    Attached Files Attached Files
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  3. #3
    Join Date
    Apr 2012
    Beans
    31

    Re: Netgear WNA3100 issues

    Yeah, I've tried your drivers chili555, the stick still doesn't work. I followed the instruction for those drivers that were on the last page of the thread you posted them on: http://ubuntuforums.org/showthread.php?t=1946875 and the ubuntu wiki page on getting ndiswrapper to work. If you can help I would be most grateful.

  4. #4
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Netgear WNA3100 issues

    Would you please round up the usual suspects?
    Code:
    sudo modprobe ndiswrapper
    ndiswrapper -l
    dmesg | grep ndis
    Thanks.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  5. #5
    Join Date
    May 2010
    Beans
    17

    Re: Netgear WNA3100 issues

    im am also having problems with same set up only I'm running 32bit. the Netgear card and 12.04 LTS are the same

  6. #6
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Netgear WNA3100 issues

    Quote Originally Posted by hopeless8009 View Post
    im am also having problems with same set up only I'm running 32bit. the Netgear card and 12.04 LTS are the same
    Please see post #4.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  7. #7
    Join Date
    Apr 2012
    Beans
    31

    Re: Netgear WNA3100 issues

    sudo modprobe ndiswrapper returns (My brother is a relatively good with ubuntu and was playing with the blacklist):
    Code:
    WARNING: All config files need .conf : /etc/modprobe.d/blacklist, it will be ignored in a future release.
    ndiswrapper -l gives:
    Code:
    WARNING: All config files need .conf : /etc/modprobe.d/blacklist, it will be ignored in a future release.
    bcmwlhigh5 : driver installed
         device (0846:9020) present
    dmesg | grep ndis outputs
    Code:
    [     9.436697] ndiswrapper version 1.57 loaded (smp=yes) (preempt=no)
    [    11.105885] ndiswrapper (check_nt_hdr:141): kernel is 64 bit, but Windows driver is not 64 bit;bad magic: 010B
    [    11.105889] ndiswrapper (load_sys_files:199): couldn't load driver 'bcmwlhigh5'
    [    11.105960] ndiswrapper (load_wrap_driver:121): couldn't load driver 'bcmwlhigh5'
    [    11.106027] usbcore: registered new interface driver ndiswrapper
    Does this help?

    Would I be right in thinking it isn't working because your drivers are not 64bit?
    Last edited by mathsgeek; April 27th, 2012 at 01:30 PM. Reason: Spelling

  8. #8
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Netgear WNA3100 issues

    Would I be right in thinking it isn't working because your drivers are not 64bit?
    Sort of. Here is a snip from the .inf file:
    ;-----------------------------------------------------------------
    ; x64 (AMD64, Intel EM64T) - WinXP
    ;
    [BROADCOM.NTamd64]
    %BCM430ND_DeviceDesc% = BCM43XNMD, USB\VID_0846&PID_9020
    As you can see, it references your device and clearly is a 64-bit .inf file. I suspect what happened is that the 32-bit .cat file is in the same folder as the .inf. I think ndiswrapper grabbed it instead of the 64-bit .cat file. Let's see if we can fix it. Go to the folder you extracted and look for and delete bcmh43xx.cat leaving only bcmh43xx64.cat. Now we erase the old install:
    Code:
    sudo ndiswrapper -e bcmwlhigh5
    And let's do some housekeeping:
    Code:
    sudo rm -rf /etc/ndiswrapper/*
    Now, let's clean this up:
    WARNING: All config files need .conf : /etc/modprobe.d/blacklist, it will be ignored in a future release.
    Let's see what your brother blacklisted:
    Code:
    cat /etc/modprobe.d/blacklist
    Whatever is in there is either not needed, in which case we can delete the file altogether; or it should be added to /etc/modprobe.d/blacklist.conf, a file that already exists on your system. Then the blacklist (not conf) can be deleted. If you are in doubt, post the result here.

    Now let's try again:
    Code:
    cd Desktop/wna3100-drivers  <--or wherever you extracted them
    sudo modprobe -r ndiswrapper
    sudo ndiswrapper -i bcmlhigh5.inf
    sudo modprobe ndiswrapper
    dmesg | grep ndis
    Now at a later timestamp than here: [ 11.105960] ndiswrapper (load_wrap_driver:121): couldn't load driver 'bcmwlhigh5', did we get rid of the bad magic?
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  9. #9
    Join Date
    Apr 2012
    Beans
    31

    Re: Netgear WNA3100 issues

    catting the blacklist gives:
    Code:
    blacklist bcm43xx
    blacklist b43
    blacklist b43legacy
    blacklist ssb
    Unfortunately we haven't got rid of the bad magic...

  10. #10
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Netgear WNA3100 issues

    None of those blacklists add or detract from your case. I suggest you remove the file altogether:
    Code:
    sudo rm /etc/modprobe.d/blacklist
    Please delete the bcmwlhigh5 as above and try these files. You will be installing bcmn43xx64.inf.

    As you have seen, this device on 64-bit is quite tricky.
    Attached Files Attached Files
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

Page 1 of 17 12311 ... LastLast

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
  •