Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 22

Thread: Asus usb-n13 in ubuntu 10.10

  1. #11
    Join Date
    Nov 2010
    Beans
    12

    Re: Asus usb-n13 in ubuntu 10.10

    Quote Originally Posted by uncaspi View Post
    I did what it said, it didnt work. When i do the make command i get this:
    Code:
    make -C tools
    make[1]: Entering directory `/home/nols/Desktop/RT3070/tools'
    gcc -g bin2h.c -o bin2h
    make[1]: Leaving directory `/home/nols/Desktop/RT3070/tools'
    /home/nols/Desktop/RT3070/tools/bin2h
    cp -f os/linux/Makefile.6 /home/nols/Desktop/RT3070/os/linux/Makefile
    make  -C  /lib/modules/2.6.35-22-generic-pae/build SUBDIRS=/home/nols/Desktop/RT3070/os/linux modules
    make[1]: Entering directory `/usr/src/linux-headers-2.6.35-22-generic-pae'
      CC [M]  /home/nols/Desktop/RT3070/os/linux/../../common/cmm_mac_usb.o
    /home/nols/Desktop/RT3070/os/linux/../../common/cmm_mac_usb.c: In function ‘NICInitRecv’:
    /home/nols/Desktop/RT3070/os/linux/../../common/cmm_mac_usb.c:83: error: implicit declaration of function ‘usb_buffer_alloc’
    /home/nols/Desktop/RT3070/os/linux/../../common/cmm_mac_usb.c:83: warning: assignment makes pointer from integer without a cast
    /home/nols/Desktop/RT3070/os/linux/../../common/cmm_mac_usb.c:112: error: implicit declaration of function ‘usb_buffer_free’
    make[2]: *** [/home/nols/Desktop/RT3070/os/linux/../../common/cmm_mac_usb.o] Error 1
    make[1]: *** [_module_/home/nols/Desktop/RT3070/os/linux] Error 2
    make[1]: Leaving directory `/usr/src/linux-headers-2.6.35-22-generic-pae'
    make: *** [LINUX] Error 2

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

    Re: Asus usb-n13 in ubuntu 10.10

    Please try the approach on the first post here. As you can see, it is the same device. Yours is:
    0b05:1784 ASUSTek Computer, Inc. 802.11n Network Adapter
    He references:
    ATTR{idVendor}=="0b05", ATTR{idProduct}=="1784",
    http://www.pclinuxos.com/forum/index...;topic=76312.0

    Post back if you get stuck.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  3. #13
    Join Date
    Nov 2010
    Beans
    12

    Re: Asus usb-n13 in ubuntu 10.10

    It worked. Thanks for the help

  4. #14
    Join Date
    Nov 2008
    Beans
    555
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Asus usb-n13 in ubuntu 10.10

    Remember to put solved on the thread

  5. #15
    Join Date
    Jan 2011
    Beans
    7

    Re: Asus usb-n13 in ubuntu 10.10

    What did he do to fix it? I get the same installation error... I don't have an account to that forum.

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

    Re: Asus usb-n13 in ubuntu 10.10

    Quote Originally Posted by roxxar View Post
    What did he do to fix it? I get the same installation error... I don't have an account to that forum.
    It depends on your kernel version. Please post:
    Code:
    uname -r
    modinfo rt2870sta | grep 1784
    modinfo rt2800usb | grep 1784
    This assumes you have the same usb.id:
    0b05:1784 ASUSTek Computer, Inc. 802.11n Network Adapter
    Thanks.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  7. #17
    Join Date
    Jan 2011
    Beans
    7

    Re: Asus usb-n13 in ubuntu 10.10

    tyler@pc:/tyler$ uname -r 2.6.35-25-generic tyler@pc:/tyler$ modinfo rt2870sta | grep 1784 alias: usb:v0B05p1784d*dc*dsc*dp*ic*isc*ip* tyler@pc:/tyler$ modinfo rt2800usb | grep 1784 tyler@pc:/tyler$

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

    Re: Asus usb-n13 in ubuntu 10.10

    If you have the same device as mentioned above:
    0b05:1784 ASUSTek Computer, Inc. 802.11n Network Adapter
    Then the fix is easy. Find out with:
    Code:
    lsusb
    If so, both rt2870sta and rt2800usb drive your device. Let's blacklist rt2800usb:
    Code:
    sudo gedit /etc/modprobe.d/blacklist.conf
    Add four lines:
    Code:
    blacklist rt2800usb
    blacklist rt2800lib
    blacklist rt2x00usb
    blacklist rt2x00lib
    Proofread, save and close gedit. Reboot and let us have your report.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  9. #19
    Join Date
    Jan 2011
    Beans
    7

    Re: Asus usb-n13 in ubuntu 10.10

    It works. I am able to see it in the network manager. Is there a way to check which wireless driver I am using for the asus usb-n13? I used the command airmon-ng and this is what it shows:

    Interface Chipset Driver

    wlan0 Unknown usb

    wlan1-wlan0 Atheros ath9k - [phy0]

    IEEE Unknown Unknown (MONITOR MODE NOT SUPPORTED)
    802.11bgn Unknown Unknown (MONITOR MODE NOT SUPPORTED)
    ESSID:"NV" Unknown Unknown (MONITOR MODE NOT SUPPORTED)

    the first one wlan0 is the asus usb-n13. It doesn't detect the chipset and driver is usb. The signal strength is very weak compared to my integrated wireless chip. Is it because I don't have the correct driver?

    appreciate your help ty.

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

    Re: Asus usb-n13 in ubuntu 10.10

    Is there a way to check which wireless driver I am using for the asus usb-n13?
    Well, I sure hope it's rt2870sta! Please check with:
    Code:
    lsmod | grep rt2
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

Page 2 of 3 FirstFirst 123 LastLast

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
  •