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

Thread: Network disabled after resuming from suspend (not a driver issue)

  1. #11
    Join Date
    Dec 2005
    Beans
    17

    Re: Network disabled after resuming from suspend (not a driver issue)

    problem persists

    lspci shows:

    02:08.0 Network controller: RaLink RT2561/RT61 rev B 802.11g

  2. #12
    Join Date
    Jan 2009
    Location
    Chicago, IL
    Beans
    6
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Network disabled after resuming from suspend (not a driver issue)

    Does anyone know of a fix for this? It's the only thing turning me off to Ubuntu...

  3. #13
    Join Date
    May 2006
    Location
    Boston Area, MA, USA
    Beans
    41

    Thumbs down Re: Network disabled after resuming from suspend (not a driver issue)

    Quote Originally Posted by kpkethc View Post
    Does anyone know of a fix for this? It's the only thing turning me off to Ubuntu...
    There are a few possible solutions listed on the bug report [1]. I haven't had a chance to try any yet (there was a suggestion posted just Friday), but the problem is definitely being looked at, and hopefully should be fixed soon.

    - Ben

    [1] https://bugs.launchpad.net/ubuntu/+s...er/+bug/291062

  4. #14
    Join Date
    Aug 2007
    Beans
    113
    Distro
    Ubuntu

    Re: Network disabled after resuming from suspend (not a driver issue)

    i have same problem with intel 2915abg wifi..."networking disabled" after suspend resume. looking forward to bug fix.

  5. #15
    Join Date
    Dec 2008
    Beans
    13

    Re: Network disabled after resuming from suspend (not a driver issue)

    What's working for me currently involved three changes. I'm not sure what the minimal set of changes is, but it works.

    1. /etc/pm/config.d/00sleep_module

    SUSPEND_MODULES="ath_pci"

    2. /etc/pm/config.d/local

    SUSPEND_MODULES="ath_pci"

    3. a resume script:

    # 2009-03-01: below are some things I tried that helped somehow
    sudo /etc/init.d/networking restart
    sudo modprobe wlan_scan_sta
    sudo ifconfig eth0 down
    sudo modprobe ath_pci
    Last edited by BadgerKid; March 7th, 2009 at 04:36 PM. Reason: formatting

  6. #16
    Join Date
    Feb 2009
    Location
    Northern VA, USA
    Beans
    16
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Network disabled after resuming from suspend (not a driver issue)

    Quote Originally Posted by BadgerKid View Post
    What's working for me currently involved three changes. I'm not sure what the minimal set of changes is, but it works.

    1. /etc/pm/config.d/00sleep_module

    SUSPEND_MODULES="ath_pci"

    2. /etc/pm/config.d/local

    SUSPEND_MODULES="ath_pci"

    3. a resume script:

    # 2009-03-01: below are some things I tried that helped somehow
    sudo /etc/init.d/networking restart
    sudo modprobe wlan_scan_sta
    sudo ifconfig eth0 down
    sudo modprobe ath_pci

    A very similar fix worked for me:

    1) sudo gedit /etc/pm/config.d/00sleep_module

    added this text as the last line in the file and saved:

    SUSPEND_MODULES="wl0"
    (note: it's a Dell mini9 with a Broadcom 43xx wireless adapter)

    2) sudo gedit /etc/pm/config.d/bcmwifi
    (note: this file does not exist, but I created it)

    added same text (SUSPEND_MODULES="wl0") as only entry in this file and saved.

    Now when I resume from suspend, I don't need to go to terminal to issue any commands...if my wireless was connected before suspend, it automatically reconnects afterwards.

    Thanks to gib2800 at this post (http://ubuntuforums.org/showthread.p...resume+network) as well as a few other posts where these solutions are suggested. I don't know which of these actions (or both?) did the trick, but it works.

    -Dan

  7. #17
    Join Date
    Feb 2009
    Location
    Hull, England
    Beans
    Hidden!
    Distro
    Kubuntu 12.04 Precise Pangolin

    Re: Network disabled after resuming from suspend (not a driver issue)

    I have an Edimax 7318usg wireless card, with a ralink chipset and rt73 driver.
    I`m new to Linux. What would I need to do to get mine working after suspend?
    Thanx in advance.

  8. #18
    Join Date
    Jan 2008
    Beans
    7

    Re: Network disabled after resuming from suspend (not a driver issue)

    hello fellas ,i have a very simple solution ,while somehow it turns to be boring for me,but at least its better than rebooting and stuff,from menu go to system>administration>hardware drives then disable the network controller and enable it again(while doing that keep the wifi enabled in the network manager)then pick up your fav. network

    i really hope it works for all,cheers,

  9. #19
    Join Date
    Aug 2007
    Beans
    5

    Talking Re: Network disabled after resuming from suspend (not a driver issue)

    Quote Originally Posted by danmarycap View Post
    A very similar fix worked for me:

    1) sudo gedit /etc/pm/config.d/00sleep_module

    added this text as the last line in the file and saved:

    SUSPEND_MODULES="wl0"
    (note: it's a Dell mini9 with a Broadcom 43xx wireless adapter)

    2) sudo gedit /etc/pm/config.d/bcmwifi
    (note: this file does not exist, but I created it)

    added same text (SUSPEND_MODULES="wl0") as only entry in this file and saved.

    Now when I resume from suspend, I don't need to go to terminal to issue any commands...if my wireless was connected before suspend, it automatically reconnects afterwards.

    Thanks to gib2800 at this post (http://ubuntuforums.org/showthread.p...resume+network) as well as a few other posts where these solutions are suggested. I don't know which of these actions (or both?) did the trick, but it works.

    -Dan
    The same fix worked for me on my Dell Optiplex gx620.

    I only needed the first step, as outlined here:
    http://ubuntuforums.org/showpost.php...54&postcount=6

    thanks everyone

  10. #20
    Join Date
    Jun 2009
    Beans
    5

    Re: Network disabled after resuming from suspend (not a driver issue)

    I had the same problem with my Intel PRO/Wireless 2200BG card. In order to turn the wireless radio on after a boot I have to run a script:

    Code:
    #!/bin/bash
    sudo modprobe fsam7400 radio=1
    exit
    I finally figured out what was needed to keep my wireless going after a suspend -- just unload and reload the driver fsam7400 via modprobe after resuming from a suspend:

    Code:
    #!/bin/bash
    sudo modprobe -r fsam7400
    sudo modprobe fsam7400 radio=1
    exit
    This seems to work well for this particular driver.

    Cheers!

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
  •