Page 4 of 5 FirstFirst ... 2345 LastLast
Results 31 to 40 of 50

Thread: Persisting Ralink 5392 Wireless driver issues

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

    Re: Persisting Ralink 5392 Wireless driver issues

    Let's troubleshoot rt2800pci.
    Code:
    dmesg | grep rt2
    iwconfig
    sudo iwlist wlan0 scan  <-or whatever iwconfig says your interface is, if not wlan0
    rfkill list all
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  2. #32
    Join Date
    Jul 2009
    Location
    Washington DC
    Beans
    33
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Persisting Ralink 5392 Wireless driver issues

    Code:
    jgomez2@SJ:~/Desktop$ dmesg | grep rt2
    [   15.546747] phy0 -> rt2800_init_eeprom: Error - Invalid RF chipset 0x5392 detected.
    [   15.546797] phy0 -> rt2x00lib_probe_dev: Error - Failed to allocate device.
    Code:
    jgomez2@SJ:~/Desktop$ iwconfig
    eth0      no wireless extensions.
    
    lo        no wireless extensions.

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

    Re: Persisting Ralink 5392 Wireless driver issues

    phy0 -> rt2800_init_eeprom: Error - Invalid RF chipset 0x5392 detected.
    That's very weird because the driver does include your device:
    Code:
    $ modinfo rt2800pci | grep 5392
    alias:          pci:v00001814d00005392sv*sd*bc*sc*i*
    The driver was patched some time ago to add your device: http://www.spinics.net/lists/linux-w.../msg90992.html

    Let's build the compat-wireless suite and see if we can fix this. Hook up the ethernet temporarily and do:
    Code:
    wget http://www.orbit-lab.org/kernel/compat-wireless-3-stable/v3.5/compat-wireless-3.5.4-1.tar.bz2
    tar -xvjf compat-wireless-3.5.4-1.tar.bz2
    cd compat-wireless-3.5.4-1
    ./scripts/driver-select rt2x00
    make
    sudo make install
    sudo modprobe -r rt2800pci
    sudo modprobe rt2800pci
    Any improvement?
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  4. #34
    Join Date
    Jul 2009
    Location
    Washington DC
    Beans
    33
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Persisting Ralink 5392 Wireless driver issues

    Nothing has changed that I can see. I cant dis/enable wireless.

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

    Re: Persisting Ralink 5392 Wireless driver issues

    That's a stubborn wireless device you have there! Let's have a look at:
    Code:
    sudo modprobe rt2800pci
    dmesg | grep rt2
    modinfo rt2800pci | grep 5392
    Thanks.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  6. #36
    Join Date
    Jul 2009
    Location
    Washington DC
    Beans
    33
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Persisting Ralink 5392 Wireless driver issues

    That's a stubborn wireless device you have there!
    Its always me


    Code:
    jgomez2@SJ:~/Desktop$ sudo modprobe rt2800pci
    [sudo] password for jgomez2: 
    jgomez2@SJ:~/Desktop$ dmesg | grep rt2
    [   15.140221] phy0 -> rt2800_init_eeprom: Error - Invalid RF chipset 0x5392 detected.
    [   15.140262] phy0 -> rt2x00lib_probe_dev: Error - Failed to allocate device.
    jgomez2@SJ:~/Desktop$ modinfort2800pci | grep 5392
    modinfort2800pci: command not found
    jgomez2@SJ:~/Desktop$ modinfo rt2800pci | grep 5392
    alias:          pci:v00001814d00005392sv*sd*bc*sc*i*
    Dont thank me, Im the cause of your ongoing war against this WLAN card

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

    Re: Persisting Ralink 5392 Wireless driver issues

    Let's double-check the integrity of the required firmware:
    Code:
    md5sum /lib/firmware/rt2860.bin
    Here is what I get:
    Code:
    75a1da3caa0b1c95e81dfba207f834c6  /lib/firmware/rt2860.bin
    If the driver is not defective and the firmware is not defective, then I wonder if the device may be defective. Does it work in other computers and operating systems?
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  8. #38
    Join Date
    Jul 2009
    Location
    Washington DC
    Beans
    33
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Persisting Ralink 5392 Wireless driver issues

    Code:
    jgomez2@SJ:~/Desktop$ md5sum /lib/firmware/rt2860.bin
    75a1da3caa0b1c95e81dfba207f834c6  /lib/firmware/rt2860.bin
    The device works when I boot up windows.

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

    Re: Persisting Ralink 5392 Wireless driver issues

    Quote Originally Posted by jgomez2 View Post
    The device works when I boot up windows.
    We may try the Windows driver, then. May I see:
    Code:
    lspci -nn | grep 0280
    Thanks.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  10. #40
    Join Date
    Jul 2009
    Location
    Washington DC
    Beans
    33
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Persisting Ralink 5392 Wireless driver issues

    Code:
    jgomez2@SJ:~/Desktop$ lspci -nn | grep 0280
    05:00.0 Network controller [0280]: Ralink corp. Device [1814:5392]

Page 4 of 5 FirstFirst ... 2345 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
  •