Page 1 of 3 123 LastLast
Results 1 to 10 of 25

Thread: Since 14.04 Upgrade Wifi does not connect after suspend, ralink RT3290

  1. #1
    Join Date
    Jan 2014
    Beans
    9

    Since 14.04 Upgrade Wifi does not connect after suspend, ralink RT3290

    Hi I have a Ralink RT3290 wireless card,
    in 13.10 everything worked well, now in 14.04 after a Suspend/Hibernate action the Wifi tries over and over to connect but fails.

    SUSPEND_MODULES="rt2800pci" in etc/pm/config.d/config

    doesn't help.

    BTW bluetooth doesn't work either!

    Any suggestions?

    Thanks!!

  2. #2
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,967
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Since 14.04 Upgrade Wifi does not connect after suspend, ralink RT3290

    Tried this driver?

    http://forum.ubuntuusers.de/topic/na.../#post-5641297

    If it works change the settings in your etc/pm/config.d/config. BTW: Is the file set to executable?

    Code:
    sudo chmod +x /etc/pm/config.d/config

  3. #3
    Join Date
    Apr 2014
    Beans
    9

    Re: Since 14.04 Upgrade Wifi does not connect after suspend, ralink RT3290

    same story with ath9k dell inspiron
    work again only after shutdown
    reboot not help

  4. #4
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,967
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Since 14.04 Upgrade Wifi does not connect after suspend, ralink RT3290

    So add the following lines via
    Code:
    gksudo gedit /etc/rc.local
    before "exit 0":
    Code:
    modprobe -r ath9k
    sleep 5
    modprobe ath9k
    Reboot.

  5. #5
    Join Date
    Jan 2014
    Beans
    9

    Re: Since 14.04 Upgrade Wifi does not connect after suspend, ralink RT3290

    tried the last idea with my rt2800pci driver, interestingly this showed the same behaviour, which i previously had only after suspend, now already after boot - so no wireless at all.

    yes, my config file is executable.

    i'll try the driver from first reply, is there any danger in doing so?

    thanks for your quick response!

  6. #6
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,967
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Since 14.04 Upgrade Wifi does not connect after suspend, ralink RT3290

    No, if its compiling (at all) and not working you can easily uninstall it via
    Code:
    sudo dkms remove -m Ralink_3290sta -v 2.6.0.0 --all
    sudo rm -r /usr/src/Ralink_3290sta-2.6.0.0
    sudo rm /etc/modprobe.d/blacklist-rt2800pci.conf

  7. #7
    Join Date
    Apr 2014
    Beans
    9

    Re: Since 14.04 Upgrade Wifi does not connect after suspend, ralink RT3290

    Quote Originally Posted by praseodym View Post
    So add the following lines via
    Code:
    gksudo gedit /etc/rc.local
    before "exit 0":
    Code:
    modprobe -r ath9k
    sleep 5
    modprobe ath9k
    Reboot.
    this not helped
    sometimes shutdown not helped too
    work again after long switch off

  8. #8
    Join Date
    May 2010
    Beans
    4

    Re: Since 14.04 Upgrade Wifi does not connect after suspend, ralink RT3290

    Had the same problem. In my case, the problem was double:

    1. the network would not come up at all after suspend;
    2. after a "sudo restart network-manager", the network would come up again, but the wifi wouldn't connect to my network.

    I found a permanent and complete solution based both on this and that, which is:
    Code:
    sudo touch /etc/pm/sleep.d/wakenet.sh
    
    sudo chmod +x /etc/pm/sleep.d/wakenet.sh
    
    sudo gedit /etc/pm/sleep.d/wakenet.sh
    Insert the following lines:
    Code:
    #!/bin/bash
    case "$1" in
    thaw|resume)
    nmcli nm sleep false
    pkill -f wpa_supplicant
    ;;
    *)
    ;;
    esac
    exit $?
    And then save.

    Hope that helps.

  9. #9
    Join Date
    Jan 2014
    Beans
    9

    Re: Since 14.04 Upgrade Wifi does not connect after suspend, ralink RT3290

    Thanks shrodi, that worked!

  10. #10
    Join Date
    Mar 2010
    Beans
    7

    Re: Since 14.04 Upgrade Wifi does not connect after suspend, ralink RT3290

    works! thank you shrodi!

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