Page 1 of 4 123 ... LastLast
Results 1 to 10 of 48

Thread: linksys wusb100 problems

Hybrid View

  1. #1
    Join Date
    Apr 2009
    Location
    Germany
    Beans
    178
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: linksys wusb100 problems

    Hello,
    a little Trick to add the ID 1737:0078 for the WUSB100v2 to the System and simply use the rt2870sta V1.4.0.0. that comes with the system if the new driver v2.3.0.0 or the rt3070 from Ralink don't work properly.

    First remove the new compiled driver if necessary:
    Code:
    cd
    cd RT2870_LinuxSTA_V2.3.0.0
    sudo make uninstall
    If you previously did not manually compile the driver from Ralink start here.

    Add the ID:
    Code:
    echo 'install rt2870sta modprobe --ignore-install rt2870sta ; /bin/echo "1737 0078" > /sys/bus/usb/drivers/rt2870/new_id' | sudo tee /etc/modprobe.d/rt2870sta.conf
    sudo modprobe -rf rt2870sta
    sudo modprobe rt2870sta
    dmesg | egrep 'rt28|usb|Phy'
    iwconfig
    The solution works? Ok, load the driver at startup
    Code:
    echo rt2870sta | sudo tee -a /etc/modules
    alternativ automatic driver load when the stick was plugged in:
    Code:
    sudo gedit /etc/udev/rules.d/10-wusb100.rules
    contents:
    Code:
    # UDEV-Rule for wusb-100v2 ID 1737:0078
    SUBSYSTEM=="usb", SYSFS{idVendor}=="1737", SYSFS{idProduct}=="0078", RUN+="/sbin/modprobe rt2870sta"
    make it ready to work
    Code:
    sudo service udev reload
    .. or restart

    Link: http://forum.ubuntuusers.de/topic/li.../#post-2264339

    greetings and a happy new year

    Rainer
    Last edited by flash63; May 2nd, 2010 at 08:19 AM. Reason: author's corrections

  2. #2
    Join Date
    Jun 2007
    Beans
    7

    Re: linksys wusb100 problems

    Thanks Flash63 your solution worked Great!!!

    Add the ID:
    Code:
    echo 'install rt2870sta modprobe --ignore-install rt2870sta ; /bin/echo "1737 0078" > /sys/bus/usb/drivers/rt2870/new_id' | sudo tee /etc/modprobe.d/rt2870sta.conf
    sudo modprobe -rf rt2870sta
    sudo modprobe rt2870sta
    dmesg | egrep 'rt28|usb|Phy'
    iwconfig

  3. #3
    Join Date
    Jun 2007
    Beans
    7

    Re: linksys wusb100 problems

    Hmm... I notice that the wireless didn't come up automatically.

    I ran the last 3 lines again and it did. What would be the appropriate way to best have the system do this on startup?
    Last edited by Jainith; January 5th, 2010 at 06:06 PM.

  4. #4
    Join Date
    Apr 2009
    Location
    Germany
    Beans
    178
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: linksys wusb100 problems

    Hello Jainith,
    edit the file /etc/modules as root and add the drivermodul rt2870sta.

    The same in one line:
    Code:
    echo rt2870sta | sudo tee -a /etc/modules
    The required options to add the ID are already into the /etc/modprobe.d/rt2870.conf
    Last edited by flash63; January 6th, 2010 at 02:03 PM.

  5. #5
    Join Date
    Jun 2007
    Beans
    7

    Re: linksys wusb100 problems

    Thanks for getting back to me. I had already figured out to put the rt2870sta in /etc/modules. I also tried adding the 'iwconfig' to my startup applications. Interestingly if I go back to startup applications now, I do not see this entry.

    Anyway, my connection is coming up automatically, but at somewhat of a delay (it doesn't get started until after gmail-notify so I get a no connection message.

    If you can think of a way to better tune the startup so the wireless connection starts before gmail-notify, that would be great. If not, its ok, as it only takes an additional 30 seconds or so to startup.

    -Jainith

  6. #6
    Join Date
    Apr 2009
    Location
    Germany
    Beans
    178
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: linksys wusb100 problems

    I think gmail-notify starts before your WLAN-connection was established.

    Delete gmail-notify from the autostart-menu and start it with the /etc/rc.local and a little delay.

    Code:
    ...
    sleep 20
    gmail-notify
    exit 0

  7. #7
    Join Date
    Jan 2010
    Beans
    1

    Re: linksys wusb100 problems

    I couldn't get WPA2 to with my wusb100 v2 until I recompiled wpa_supplicant with support for the Ralink driver. I'm using Debian and it seems that the wpa_supplicant that Debian uses doesn't have support for the Ralink driver.

  8. #8
    Join Date
    May 2007
    Location
    Ontario Canada
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: linksys wusb100 problems

    Edit: gaah wrong thread. Thanks a lot for this, I knew there was a udev or sysfs solution to this USB Dev ID problem!

    What's the point of running the install command at every boot? Would echoing the USB Dev ID to /sys/bus/usb/drivers/rt2870/new_id not work on its own?
    Last edited by peepingtom; February 23rd, 2010 at 07:46 AM.

  9. #9
    Join Date
    Apr 2009
    Location
    Germany
    Beans
    178
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: linksys wusb100 problems

    Quote Originally Posted by peepingtom View Post
    Edit: gaah wrong thread. Thanks a lot for this, I knew there was a udev or sysfs solution to this USB Dev ID problem!

    What's the point of running the install command at every boot? Would echoing the USB Dev ID to /sys/bus/usb/drivers/rt2870/new_id not work on its own?
    Hello,
    peepingtom, try the udev-rule if you won't load the module at startup.

    http://ubuntuforums.org/showthread.p...48#post8591348
    Last edited by flash63; May 3rd, 2010 at 06:56 PM.

  10. #10
    Join Date
    Jan 2010
    Beans
    25

    Re: linksys wusb100 problems

    Flash63, you made my day.

    Thanks!

    GT

Page 1 of 4 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
  •