Results 1 to 9 of 9

Thread: Getting USB WiFi dongle to work in Linux

  1. #1
    Join Date
    Nov 2010
    Beans
    58

    Getting USB WiFi dongle to work in Linux

    Hello,

    I've bought this Blumax USB WLAN adapter 9009 (ID 148f:2573 Ralink Technology, Corp. RT2501/RT2573 Wireless Adapter). I was specifically happy to read in its specs that it supports Linux (http://blu-max.com/products/wlan_adapter.html).

    However, it turned out that the co-packaged CD drive doesn't contain anything Linux-related, and the support page online has gzip package with many files I don't know what to do with (http://blu-max.com/downloads/drivers...A_v2.2.1.0.tgz).
    The online support swallowed my query and hasn't returned any answer.

    So, now I am wondering what to do. I don't feel so competent as to be able to compile the drivers on my own, specifying several specific parameters. At least it doesn't compile with default params. I'd appreciate any advice, how to move forward with this. Apart from returning the device, because I'm too far now from the place where I bought this.

    Thanks!

  2. #2
    Join Date
    Sep 2009
    Location
    surrey uk
    Beans
    2,057
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Getting USB WiFi dongle to work in Linux

    If you have installed ubuntu I would connect an eth0 cable and try updateing you might find this fixes it
    DUAL BOOT XP & Natty, Trying LFS

  3. #3
    Join Date
    Nov 2010
    Beans
    58

    Re: Getting USB WiFi dongle to work in Linux

    Quote Originally Posted by spiky001 View Post
    If you have installed ubuntu I would connect an eth0 cable and try updateing you might find this fixes it
    Well, I am obviously able to connect to the net by other means. And I have fully updated Ubuntu now. It just seems that inserting that USB device doesn't trigger any further processes like recognising that it's a WLAN adapter, trying to set it up, etc. I don't know if the WLAN USB dongles have some common protocol, ie is it reasonable to expect that it would work without manufacturer-provided drivers.

  4. #4
    Join Date
    Jul 2010
    Location
    Seattle, WA
    Beans
    138
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: Getting USB WiFi dongle to work in Linux

    I used this to get a netgear dongle to work. I don't remember which thread it was that helped me but there is one that will help with any questions. Just installed it little over a week ago.

    http://sourceforge.net/projects/ath9k-htc/

  5. #5
    Join Date
    Feb 2007
    Location
    Hilversum, NL
    Beans
    595
    Distro
    Ubuntu

    Re: Getting USB WiFi dongle to work in Linux

    Quote Originally Posted by Sidrabs View Post
    However, it turned out that the co-packaged CD drive doesn't contain anything Linux-related, and the support page online has gzip package with many files I don't know what to do with (http://blu-max.com/downloads/drivers...A_v2.2.1.0.tgz).
    I assume you know how to open a terminal? You first have to install some stuff that is needed for compiling. To get this, run
    Code:
    sudo apt-get install build-essential
    Change directory to where you put the .tgz file. To extract it, run
    Code:
     tar -xvf wlan9009_Linux_STA_v2.2.1.0.tgz
    Now Change directory to the extracted archive, and run
    Code:
    make
    sudo make install
    Reboot, and If you're lucky it'll work.

  6. #6
    Join Date
    May 2010
    Location
    SE England
    Beans
    210

    Re: Getting USB WiFi dongle to work in Linux

    Before doing anything dramatic like building stuff, try just "ejecting" the co-packaged CD drive (while leaving the dongle in place) ; waiting 30secs and then try the network manager applet. It worked for me on one of these beasts - Ubuntu initially sees these devices as CD's and only recognises the modem when it's ejected.


    Bouncingwilf
    Last edited by bouncingwilf; November 19th, 2010 at 10:06 PM. Reason: typo

  7. #7
    Join Date
    Feb 2007
    Location
    Hilversum, NL
    Beans
    595
    Distro
    Ubuntu

    Re: Getting USB WiFi dongle to work in Linux

    Quote Originally Posted by bouncingwilf View Post
    Before doing anything dramatic like building stuff
    Hehe, I can think of more dramatic things

    Seriously, if the manufacturer of your NIC has supplied drivers, and it won't work out of the box, building and installing the drivers is a straightforward thing to do. I suppoze, however, there's no reason to not give the suggestion of bouncingwilf a try.

  8. #8
    Join Date
    Nov 2010
    Beans
    58

    Re: Getting USB WiFi dongle to work in Linux

    When I launch System/Administration/Network tools, I see new Network device, "Wireless Interface (wlan0)". So this dongle indeed is recognized as network device, but nothing particular follows from that - no wlan tray icon shows up so that I could access my wireless network.

    Trying to install the suggested app (the one from http://sourceforge.net/projects/ath9k-htc), ends with error:
    trying to overwrite '/lib/firmware/ar9271.fw', which is also in package linux-firmware 1.38
    Code:
    (Reading database ... 149847 files and directories currently installed.)
    Unpacking ath9k-htc-installer (from ath9k_htc-installer_1-0_all.deb) ...
    dpkg: error processing ath9k_htc-installer_1-0_all.deb (--install):
     trying to overwrite '/lib/firmware/ar9271.fw', which is also in package linux-firmware 1.38
    Processing triggers for hicolor-icon-theme ...
    Processing triggers for desktop-file-utils ...
    Processing triggers for python-gmenu ...
    Rebuilding /usr/share/applications/desktop.C.cache...
    Processing triggers for python-support ...
    Errors were encountered while processing:
     ath9k_htc-installer_1-0_all.deb
    I am not sure should I override the firmware file, or skip it, kind of scary to mess with such stuff.

    About trying to build the original driver (why don't they provide pre-compiled package, is there any reason to force user in building his own version?): upon running make, I get hoards of warnings (what perhaps is permissible), but finally it exits with error:
    Code:
    cp: cannot create regular file `/tftpboot': Permission denied
    make: *** [LINUX] Error 1
    I am not sure should I really compile it as su? Kind of scary to let it write files in some obscure places, when I can't even be sure if it will all work whatsoever. To my understanding, there should be no reason to require su priveleges, if one wants to use USB WiFi dongle.

  9. #9
    Join Date
    Nov 2010
    Beans
    58

    Re: Getting USB WiFi dongle to work in Linux

    Just wanted to declare that with the new kernel, this problem was automatically solved. I never managed to get it working before, though.

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
  •