Page 11 of 16 FirstFirst ... 910111213 ... LastLast
Results 101 to 110 of 154

Thread: Netgear USB N150 wireless adapter keeps asking for password ubuntu 12.04

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

    Re: Netgear USB N150 wireless adapter keeps asking for password ubuntu 12.04

    Quote Originally Posted by DZDB View Post
    Chili555, in addition I ran code lsmod|grep -e ndis -e8192 for your information. My results are as follows:

    dzdb@dzdb-System-Product-Name:~$ lsmod|grep -e ndis -e8192
    rtl8192cu 97757 0
    rtl8192c_common 69519 1 rtl8192cu
    rtlwifi 95839 1 rtl8192cu
    mac80211 436493 3 rtl8192cu,rtl8192c_common,rtlwifi
    dzdb@dzdb-System-Product-Name:~$
    Let's blacklist the native driver:
    Code:
    sudo su
    echo "blacklist rtl8192cu" >> /etc/modprobe.d/blacklist.conf
    exit
    Reboot and let us see:
    Code:
    ndiswrapper -l
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  2. #102
    Join Date
    Jan 2013
    Beans
    52

    Re: Netgear USB N150 wireless adapter keeps asking for password ubuntu 12.04

    Hi Chili,

    Per your post #101 I ran the following:

    Code:
    sudo su
    echo "blacklist rtl8192cu" >> /etc/modprobe.d/blacklist.conf
    exit

    I then rebooted and ran the following:

    Code:
    ndiswrapper -l

    The results are as follows:

    dzdb@dzdb-System-Product-Name:~$ ndiswrapper -l
    netrtwlanu : invalid driver!
    dzdb@dzdb-System-Product-Name:~$


    In addition I ran the following:

    Code:
    lsusb
    lsmod|grep -e ndis -e8192


    The results are as follows:

    dzdb@dzdb-System-Product-Name:~$ lsusb
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 001 Device 002: ID 0781:5151 SanDisk Corp. Cruzer Micro Flash Drive
    Bus 001 Device 003: ID 0846:9041 NetGear, Inc. WNA1000M 802.11bgn [Realtek RTL8188CUS]
    Bus 005 Device 002: ID 046d:c05a Logitech, Inc. Optical Mouse M90
    Bus 006 Device 002: ID 046d:c31c Logitech, Inc. Keyboard K120 for Business
    dzdb@dzdb-System-Product-Name:~$



    dzdb@dzdb-System-Product-Name:~$ lsmod|grep -e ndis -e8192
    dzdb@dzdb-System-Product-Name:~$


    Note "netrtwlanu : invalid driver!"

    So what are my next steps? Should I uninstall and then install the "netrtwlanu" driver?
    Last edited by DZDB; March 31st, 2013 at 10:57 AM.

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

    Re: Netgear USB N150 wireless adapter keeps asking for password ubuntu 12.04

    Quote Originally Posted by DZDB View Post

    So what are my next steps? Should I uninstall and then install the "netrtwlanu" driver?
    Regrettably, I can find no better Windows XP files other than the ones you have tried. In fact, the WinXPlater files I attached were gathered from Realtek's own website and they seem to clash, in some way, with ndiswrapper. If you wish to continue to try ndiswrapper, I think the next step is to download and compile the latest version of ndiswrapper. http://ubuntuforums.org/showthread.p...3#post12573923
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  4. #104
    Join Date
    Jan 2013
    Beans
    52

    Re: Netgear USB N150 wireless adapter keeps asking for password ubuntu 12.04

    Chili, I thank you for all your efforts. I just have a few follow-up questions which are as follows:

    1) I blacklisted Ubuntu 12.04's native driver by using the following code:

    sudo su
    echo "blacklist rtl8192cu" >> /etc/modprobe.d/blacklist.conf

    What is the code to unblacklist Ubuntu 12.04's native driver?

    2) The netrtwlanu driver worked for Katsumodo (see post #55) and he has the same usb adapter which is Netgear usb n-150 wireless adapter. So why isn't the netrtwlanu driver working for me? Is he using a different version of ndiswrapper? My version is 1.57.

    3) I also have a Linksys N300 wireless-N usb adapter. Can you give me a driver (inf file) that will work with the Linksys N300 adapter and ndiswrapper 1.57 in Ubuntu 12.04?

    4) If you don't have a driver that will will work with the Linksys N300 adapter and ndiswrapper 1.57 in Ubuntu 12.04, then can you recommend a usb adapter that will work on Ubuntu 12.04 using ndiswrapper 1.57 (if necessary)?


    Once again thanks for your efforts!

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

    Re: Netgear USB N150 wireless adapter keeps asking for password ubuntu 12.04

    1) I blacklisted Ubuntu 12.04's native driver by using the following code:

    sudo su
    echo "blacklist rtl8192cu" >> /etc/modprobe.d/blacklist.conf

    What is the code to unblacklist Ubuntu 12.04's native driver?
    Please do:
    Code:
    gksudo gedit /etc/modprobe.d/blacklist.conf
    At the end will be the line: blacklist rtl8192cu. Remove it, or, if you want to be able to recall it in case you want to experiment, comment it out like this: #blacklist rtl8192cu. The hashtag # says to the system to not act upon what follows. This can be used to add explanations as well: #chili recommends in forum post.

    After you have made your change, proofread carefully, save and close gedit. Then load the module again:
    Code:
    sudo modprobe rtl8192cu
    2) The netrtwlanu driver worked for Katsumodo (see post #55) and he has the same usb adapter which is Netgear usb n-150 wireless adapter. So why isn't the netrtwlanu driver working for me? Is he using a different version of ndiswrapper? My version is 1.57.
    I have no idea which version he's using. I also have no idea why things occasionally work beautifully for one person and not at all for another.
    3) I also have a Linksys N300 wireless-N usb adapter. Can you give me a driver (inf file) that will work with the Linksys N300 adapter and ndiswrapper 1.57 in Ubuntu 12.04?
    Please tell me more:
    Code:
    lsusb
    Let's try to solve this before you go shopping again.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  6. #106
    Join Date
    Jan 2013
    Beans
    52

    Re: Netgear USB N150 wireless adapter keeps asking for password ubuntu 12.04

    Chili, thanks for sticking with me. I inserted the Linksys N300 usb adapter in the pc usb port and ran the following code:

    lsusb

    My results are as follows:

    dzdb@dzdb-System-Product-Name:~$ lsusb
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 roothub
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 roothub
    Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 roothub
    Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 roothub
    Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 roothub
    Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 roothub
    Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 roothub
    Bus 001 Device 002: ID 13b1:0039 Linksys AE1200 802.11bgnWireless Adapter [Broadcom BCM43235]
    Bus 005 Device 002: ID 046d:c05a Logitech, Inc. Optical MouseM90
    Bus 006 Device 002: ID 046d:c31c Logitech, Inc. Keyboard K120for Business
    Bus 001 Device 003: ID 0781:5151 SanDisk Corp. Cruzer MicroFlash Drive
    dzdb@dzdb-System-Product-Name:~$

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

    Re: Netgear USB N150 wireless adapter keeps asking for password ubuntu 12.04

    The file is too big to add as an attachment, so I've given you a link to my personal Dropbox. https://dl.dropbox.com/u/58267392/xpae1200.zip It's still syncing, so give it a few minutes.

    Gotta love the Dropbox!
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  8. #108
    Join Date
    Jan 2013
    Beans
    52

    Re: Netgear USB N150 wireless adapter keeps asking for password ubuntu 12.04

    Chili,
    I tried installing the bcmwlhigh5.inf file using the ndisgtk application. Again I received an "Invalid Driver" message. My questions are as follows:

    1) Did I attempt to install the correct file?
    2) Also I am wondering if I installed and loaded ndiswrapper properly. Is there a command that I can run to confirm proper installion and loading of ndiswrapper?


    I have run the following commands:

    ndiswrapper -l
    dmesg|grep ndis


    My results are as follows:

    dzdb@dzdb-System-Product-Name:~$ ndiswrapper -l
    bcmwlhigh5 : invalid driver!
    dzdb@dzdb-System-Product-Name:~$


    281.914818] ndiswrapper version 1.57 loaded (smp=yes,preempt=no)
    [ 481.052339] [<f927d331>]load_wrap_driver+0x101/0x1b0 [ndiswrapper]
    [ 481.052384] [<f928aebf>] wrap_pnp_start_device+0x2f/0x2c0[ndiswrapper]
    [ 481.052451] [<f928b8ee>]wrap_pnp_start_usb_device+0xbe/0xf0 [ndiswrapper]
    [ 481.052639] [<f927e6cd>] loader_init+0x9d/0x130[ndiswrapper]
    [ 481.052670] [<f928cf47>] ?wrap_procfs_init+0x47/0xc0 [ndiswrapper]
    [ 481.052700] [<f9292c31>] ? wrapndis_init+0x41/0x50[ndiswrapper]
    [ 481.052726] [<f9201077>] wrapper_init+0x77/0x1000[ndiswrapper]
    [ 601.052317] [<f927d331>]load_wrap_driver+0x101/0x1b0 [ndiswrapper]
    [ 601.052361] [<f928aebf>] wrap_pnp_start_device+0x2f/0x2c0[ndiswrapper]
    [ 601.052429] [<f928b8ee>]wrap_pnp_start_usb_device+0xbe/0xf0 [ndiswrapper]
    [ 601.052617] [<f927e6cd>] loader_init+0x9d/0x130[ndiswrapper]
    [ 601.052648] [<f928cf47>] ?wrap_procfs_init+0x47/0xc0 [ndiswrapper]
    [ 601.052679] [<f9292c31>] ? wrapndis_init+0x41/0x50[ndiswrapper]
    [ 601.052704] [<f9201077>] wrapper_init+0x77/0x1000[ndiswrapper]
    [ 721.052342] [<f927d331>]load_wrap_driver+0x101/0x1b0 [ndiswrapper]
    [ 721.052388] [<f928aebf>] wrap_pnp_start_device+0x2f/0x2c0[ndiswrapper]
    [ 721.052456] [<f928b8ee>]wrap_pnp_start_usb_device+0xbe/0xf0 [ndiswrapper]
    [ 721.052646] [<f927e6cd>] loader_init+0x9d/0x130[ndiswrapper]
    [ 721.052677] [<f928cf47>] ?wrap_procfs_init+0x47/0xc0 [ndiswrapper]
    [ 721.052708] [<f9292c31>] ? wrapndis_init+0x41/0x50[ndiswrapper]
    [ 721.052734] [<f9201077>] wrapper_init+0x77/0x1000[ndiswrapper]
    [ 841.052328] [<f927d331>]load_wrap_driver+0x101/0x1b0 [ndiswrapper]
    [ 841.052371] [<f928aebf>]wrap_pnp_start_device+0x2f/0x2c0 [ndiswrapper]
    [ 841.052439] [<f928b8ee>]wrap_pnp_start_usb_device+0xbe/0xf0 [ndiswrapper]
    [ 841.052627] [<f927e6cd>] loader_init+0x9d/0x130[ndiswrapper]
    [ 841.052658] [<f928cf47>] ?wrap_procfs_init+0x47/0xc0 [ndiswrapper]
    [ 841.052689] [<f9292c31>] ? wrapndis_init+0x41/0x50[ndiswrapper]
    [ 841.052715] [<f9201077>] wrapper_init+0x77/0x1000[ndiswrapper]
    [ 961.052336] [<f927d331>]load_wrap_driver+0x101/0x1b0 [ndiswrapper]
    [ 961.052381] [<f928aebf>]wrap_pnp_start_device+0x2f/0x2c0 [ndiswrapper]
    [ 961.052448] [<f928b8ee>]wrap_pnp_start_usb_device+0xbe/0xf0 [ndiswrapper]
    [ 961.052637] [<f927e6cd>] loader_init+0x9d/0x130[ndiswrapper]
    [ 961.052668] [<f928cf47>] ?wrap_procfs_init+0x47/0xc0 [ndiswrapper]
    [ 961.052699] [<f9292c31>] ? wrapndis_init+0x41/0x50[ndiswrapper]
    [ 961.052725] [<f9201077>] wrapper_init+0x77/0x1000[ndiswrapper]
    [ 1081.052353] [<f927d331>] load_wrap_driver+0x101/0x1b0 [ndiswrapper]
    [ 1081.052399] [<f928aebf>] wrap_pnp_start_device+0x2f/0x2c0 [ndiswrapper]
    [ 1081.052467] [<f928b8ee>] wrap_pnp_start_usb_device+0xbe/0xf0 [ndiswrapper]
    [ 1081.052656] [<f927e6cd>] loader_init+0x9d/0x130 [ndiswrapper]
    [ 1081.052687] [<f928cf47>] ? wrap_procfs_init+0x47/0xc0 [ndiswrapper]
    [ 1081.052717] [<f9292c31>] ? wrapndis_init+0x41/0x50 [ndiswrapper]
    [ 1081.052743] [<f9201077>] wrapper_init+0x77/0x1000 [ndiswrapper]
    [ 1201.052338] [<f927d331>] load_wrap_driver+0x101/0x1b0 [ndiswrapper]
    [ 1201.052383] [<f928aebf>] wrap_pnp_start_device+0x2f/0x2c0 [ndiswrapper]
    [ 1201.052451] [<f928b8ee>] wrap_pnp_start_usb_device+0xbe/0xf0 [ndiswrapper]
    [ 1201.052640] [<f927e6cd>] loader_init+0x9d/0x130 [ndiswrapper]
    [ 1201.052672] [<f928cf47>] ? wrap_procfs_init+0x47/0xc0 [ndiswrapper]
    [ 1201.052702] [<f9292c31>] ? wrapndis_init+0x41/0x50 [ndiswrapper]
    [ 1201.052728] [<f9201077>] wrapper_init+0x77/0x1000 [ndiswrapper]
    [ 1321.052327] [<f927d331>] load_wrap_driver+0x101/0x1b0 [ndiswrapper]
    [ 1321.052371] [<f928aebf>] wrap_pnp_start_device+0x2f/0x2c0 [ndiswrapper]
    [ 1321.052439] [<f928b8ee>] wrap_pnp_start_usb_device+0xbe/0xf0 [ndiswrapper]
    [ 1321.052628] [<f927e6cd>] loader_init+0x9d/0x130 [ndiswrapper]
    [ 1321.052660] [<f928cf47>] ? wrap_procfs_init+0x47/0xc0 [ndiswrapper]
    [ 1321.052690] [<f9292c31>] ? wrapndis_init+0x41/0x50 [ndiswrapper]
    [ 1321.052716] [<f9201077>] wrapper_init+0x77/0x1000 [ndiswrapper]
    [ 1441.052336] [<f927d331>] load_wrap_driver+0x101/0x1b0 [ndiswrapper]
    [ 1441.052380] [<f928aebf>] wrap_pnp_start_device+0x2f/0x2c0 [ndiswrapper]
    [ 1441.052448] [<f928b8ee>] wrap_pnp_start_usb_device+0xbe/0xf0 [ndiswrapper]
    [ 1441.052635] [<f927e6cd>] loader_init+0x9d/0x130 [ndiswrapper]
    [ 1441.052667] [<f928cf47>] ? wrap_procfs_init+0x47/0xc0 [ndiswrapper]
    [ 1441.052697] [<f9292c31>] ? wrapndis_init+0x41/0x50 [ndiswrapper]
    [ 1441.052723] [<f9201077>] wrapper_init+0x77/0x1000 [ndiswrapper]
    [ 1561.052335] [<f927d331>] load_wrap_driver+0x101/0x1b0 [ndiswrapper]
    [ 1561.052380] [<f928aebf>] wrap_pnp_start_device+0x2f/0x2c0 [ndiswrapper]
    [ 1561.052447] [<f928b8ee>] wrap_pnp_start_usb_device+0xbe/0xf0 [ndiswrapper]
    [ 1561.052635] [<f927e6cd>] loader_init+0x9d/0x130 [ndiswrapper]
    [ 1561.052666] [<f928cf47>] ? wrap_procfs_init+0x47/0xc0 [ndiswrapper]
    [ 1561.052697] [<f9292c31>] ? wrapndis_init+0x41/0x50 [ndiswrapper]
    [ 1561.052723] [<f9201077>] wrapper_init+0x77/0x1000 [ndiswrapper]
    dzdb@dzdb-System-Product-Name:~$
    Last edited by DZDB; April 3rd, 2013 at 10:55 AM.

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

    Re: Netgear USB N150 wireless adapter keeps asking for password ubuntu 12.04

    I am pretty confident that the .inf file is correct. It says, in part:
    ;-----------------------------------------------------------------
    ; x86 - Win2K, WinXP
    ;
    [Cisco]
    %Linksys_AE1200_DeviceDesc% = Linksys_AE1200, USB\VID_13B1&PID_0039
    %Linksys_AE2500_DeviceDesc% = Linksys_AE2500, USB\VID_13B1&PID_003A

    ;-----------------------------------------------------------------
    I've highlighted your device ID. Also, as you can see, it is for XP and x86, also known as 32-bit which I read above is what you've installed.

    I suggest you do as I previously suggested:
    If you wish to continue to try ndiswrapper, I think the next step is to download and compile the latest version of ndiswrapper. http://ubuntuforums.org/showthread.p...3#post12573923
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  10. #110
    Join Date
    Jan 2013
    Beans
    52

    Re: Netgear USB N150 wireless adapter keeps asking for password ubuntu 12.04

    Installing Ndiswrapper 1.58


    Chili555,

    Per post #109 you recommended that I install ndiswrapper 1.58.

    For me (I have two kids ages 5 and 3) to use a temporary Ethernet connection is a time consuming and major event. So I want to ensure that my instructions to install ndiswrapper 1.58 are “fairly” complete and accurate. I also have a few questions which are imbedded in my steps.


    1. Hook up the Ethernet cord. Then go to the terminal and type the following code:


    sudo apt-get install linux-headers-generic build-essential



    1. Go here and download the 1.58 tar.gz and drag and drop it to your desktop so we can find it.


    I’m not sure what you mean by “go here”?

    How does one drag and drop the 1.58 tar.gz from the terminal to the desktop?




    1. Go to the terminal and run the following codes:


    cd Desktop/nidiswrapper-1.58
    sudo su
    make
    make install
    modprobe ndiswrapper
    exit



    1. In addition, to load (or attach to Kernel?) run the following code:


    sudo modprobe ndiswrapper


    1. Remove Ethernet cord



    1. Insert usb adapter




    1. Using the ndisgtk application (a gui) load either the netrtwlanu driver (for the Netgear N150 usb adapter) or the bcmwlhigh5.ini driver (for the Linksys N300 usb adapter)


    Hopefully I receive a “Driver Installed” message as opposed “Invalid Driver” message.


    Are my steps correct?

Page 11 of 16 FirstFirst ... 910111213 ... 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
  •