Results 1 to 4 of 4

Thread: Problem with 14.04 LTS and NetGear WNA1000M

  1. #1
    Join Date
    Nov 2014
    Beans
    3

    Problem with 14.04 LTS and NetGear WNA1000M

    I have a fairly weird problem where my internet seems to stop working 5 minutes after boot up - Pinging to the default gateway also fails (Router is still up and working). The network adapter is still up and WiFi is still connected. I have tried multiple clients, so I would rule out a pure software issue. And things just work fine on windows, so I would rule out a hardware issue. The system I'm running is:


    Code:
    Linux mysys 3.13.0-39-generic #66-Ubuntu SMP Tue Oct 28 13:30:27 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

    The WiFi adapter details from `lsusb`:


    Code:
    Bus 002 Device 003: ID 0846:9041 NetGear, Inc. WNA1000M 802.11bgn [Realtek RTL8188CUS]

    Results of `lsmod | grep rtl`:


    Code:
    rtl8192cu              67723  0 
    rtl_usb                18448  1 rtl8192cu
    rtlwifi                63475  2 rtl_usb,rtl8192cu
    rtl8192c_common        53172  1 rtl8192cu
    mac80211              630653  3 rtl_usb,rtlwifi,rtl8192cu
    cfg80211              484040  2 mac80211,rtlwifi



    I see that the driver loaded is slightly different from the USB one - Is that it? If so, how to fix it?


    Any ideas are appreciated.

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

    Re: Problem with 14.04 LTS and NetGear WNA1000M

    I see that the driver loaded is slightly different from the USB one - Is that it? If so, how to fix it?
    No fix is needed. Someone at the Realtek factory hard-codes a series into the silicone. The Linux developer named the driver under the 8192 umbrella with the 'cu' suffix. There is no problem whatever in that regard.

    The driver instability is, of course, another question. There is a well-known bug in the driver. I believe you can fix it. Disconnect your wireless connection (unplug the USB adapter that contains the Realtek chipset), and temporarily connect to the internet by means of an ethernet cable (or by means of another wireless chipset that does function well).

    Now install some applications for building the right driver via a terminal:
    Code:
    sudo apt-get install linux-headers-generic build-essential dkms git
    Now download the source code of the driver via a terminal:
    Code:
    git clone https://github.com/pvaret/rtl8192cu-fixes.git
    Set it up as a DKMS module via a terminal:
    Code:
    sudo dkms add ./rtl8192cu-fixes
    Build and install the new driver via a terminal:
    Code:
    sudo dkms install 8192cu/1.9
    Refresh the module list via a terminal:
    Code:
    sudo depmod -a
    Blacklist the faulty driver via a terminal:
    Code:
    sudo -i
    echo "blacklist rtl8192cu"  >>  /etc/modprobe.d/blacklist.conf
    exit
    Detach the ethernet and reboot; the wireless should be working much better now.

    Note: a possibly surprising side effect might be, that the light on your wireless card is blinking constantly now. That's normal: the light is blinking whenever data are being sent or received.
    "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
    Nov 2014
    Beans
    3

    Re: Problem with 14.04 LTS and NetGear WNA1000M

    Thanks. Works perfectly.

  4. #4
    Join Date
    Dec 2014
    Beans
    41
    Distro
    Xubuntu

    Re: Problem with 14.04 LTS and NetGear WNA1000M

    I have been struggling with the same problem as OP and have tried lots of different ways but no joy.

    Chili you are awesome! It has worked for me on xubuntu 14.04 and i now have wifi on my pc.

    Thanks fella

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
  •