PDA

View Full Version : upgrade to 13.10 after you suspend, network is disabled and cant be enabled



sdowney717
October 20th, 2013, 01:35 PM
It requires a reboot.
This is an onboard e1000 network chip

coffeecat
October 20th, 2013, 01:38 PM
13.10 is no longer in development and has been released now.

Thread moved to Installation & Upgrades.

sdowney717
October 20th, 2013, 01:38 PM
It requires a reboot.
This is an onboard e1000 network chip
any ideas?

I have the x1300 AMD video card
After it wakes up, you see the empty network triangle and click on it says network disabled.
And the leds are off.
IF you tell it to enable, the LEDs light up but the empty triangle remains. And no network.

sdowney717
October 20th, 2013, 03:45 PM
I solved following this advice
http://askubuntu.com/questions/266857/ubuntu-12-04-wifi-not-working-after-suspension


Here is a technique that sometimes works:

gksudo gedit /etc/pm/config.d/config
Add a single line:

SUSPEND_MODULES="e100"
Proofread, save and close gedit. Reboot, suspend and let us have your report.

for me the driver is e100.
You find the driver by sudo lshw -C network

the line driver = 'the driver', the driver is what you use in that line

SUSPEND_MODULES="the driver"

sdowney717
October 20th, 2013, 03:46 PM
Not solved.
This seems to work if you do a suspend and then within a couple minutes awake the PC.
I just left it sit suspended for an hour and when it awakens, the network is disabled.

castor_fou
October 20th, 2013, 08:20 PM
Same issue here.

I can however resume network with : sudo nmcli nm sleep false

sdowney717
October 21st, 2013, 11:29 AM
Thanks for this. That does work.
I ran it and I got a message that says network now offline.

Then you click the icon and you see all the network cards
Then tell it to enable networking, selecting 'Auto Ethernet'
And it comes back working.

SO, how can we make this work like it should?
Anyone submitted a bug yet?

I changed the line to read
SUSPEND_MODULES="e100 e1000" in that config file, but it has no effect.
This MB has 2 NICS onboard builtin.

sdowney717
October 21st, 2013, 02:51 PM
I started a bug report so if you wish to join and contribute some input there.
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1242679

phaenze
October 27th, 2013, 04:34 PM
I have this bug as well. I found the work-around* here (http://ubuntuforums.org/showthread.php?t=2182058&p=12824696#post12824696) and here (http://ubuntuforums.org/showthread.php?t=1652574&p=10283728#post10283728). The basic steps are:

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:


#!/bin/bash
case "$1" in
thaw|resume)
nmcli nm sleep false
;;
*)
;;
esac
exit $?
Save



Now the interface is started upon resume. It seems to suspend/resume slower, but it works.

Peace,
Paul :cool:

*This is not the solution (as I originally wrote) but a work-around. The solution is for the bug to be fixed. Visit this page (https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1242679) and click if it's affecting you. Thanks.

yefymenko
October 29th, 2013, 02:24 PM
I have this bug as well. I found the work-around* here (http://ubuntuforums.org/showthread.php?t=2182058&p=12824696#post12824696) and here (http://ubuntuforums.org/showthread.php?t=1652574&p=10283728#post10283728). The basic steps are:


Now the interface is started upon resume. It seems to suspend/resume slower, but it works.

Peace,
Paul :cool:

*This is not the solution (as I originally wrote) but a work-around. The solution is for the bug to be fixed. Visit this page (https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1242679) and click if it's affecting you. Thanks.

This worked perfectly for me. Ubuntu 13.10, driver=iwlwifi,

Hardware:
description: Wireless interface
product: PRO/Wireless 5100 AGN [Shiloh] Network Connection
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:03:00.0
logical name: wlan0
version: 00
serial: 00:21:5d:90:dd:44
width: 64 bits
clock: 33MHz


Thanks.

Tommy
October 31st, 2013, 04:06 PM
Anyone having this problem might also want look at bug 1184262 -- https://bugs.launchpad.net/bugs/1184262 -- as of yesterday there's a software package with a patch to try to fix it, which has helped some and not others.

EDIT: The updated software HAS helped me.

Atcold
November 3rd, 2013, 10:24 PM
I have this bug as well. I found the work-around* here (http://ubuntuforums.org/showthread.php?t=2182058&p=12824696#post12824696) and here (http://ubuntuforums.org/showthread.php?t=1652574&p=10283728#post10283728). The basic steps are:


Now the interface is started upon resume. It seems to suspend/resume slower, but it works.

Peace,
Paul :cool:

*This is not the solution (as I originally wrote) but a work-around. The solution is for the bug to be fixed. Visit this page (https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1242679) and click if it's affecting you. Thanks.
Awesome! This did the job! I was without network even after rebooting the system, but now it works fine again :)
Thank you very much

gacb
November 5th, 2013, 04:29 PM
If any of you are using cairo-dock, disable the auto-starting, reboot and see if the problem persists. It resolved my suspend problem and the reboot/shutdown functions were reactivated as well.

I've filed a bug report (https://bugs.launchpad.net/bugs/1248220) indicating the conflict.

Tommy
November 6th, 2013, 08:13 PM
If any of you are using cairo-dock, disable the auto-starting, reboot and see if the problem persists. It resolved my suspend problem and the reboot/shutdown functions were reactivated as well.


You might also want to look at Bug 1184262 https://bugs.launchpad.net/bugs/1184262 -- it could be that cairo-dock is triggering the bug merely because it puts just enough strain on the processor. On my netbook, the bug got triggered by opening a Chrome browser with a couple of dozen tabs. Try installing the updated package and see if it helps with cairo-dock.

EDIT: This week (2013-11-14) they released a fix to the systemd-shim software so if you see that update come through on your update-manager, give it a try. It fixes (or greatly reduces) the problem for many folks.

Dr.Death
November 23rd, 2013, 12:16 PM
I have this bug as well. I found the work-around* here (http://ubuntuforums.org/showthread.php?t=2182058&p=12824696#post12824696) and here (http://ubuntuforums.org/showthread.php?t=1652574&p=10283728#post10283728). The basic steps are:


Now the interface is started upon resume. It seems to suspend/resume slower, but it works.

Peace,
Paul :cool:

*This is not the solution (as I originally wrote) but a work-around. The solution is for the bug to be fixed. Visit this page (https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1242679) and click if it's affecting you. Thanks.


thanks, this work around solve my problem

Clemens1947
November 27th, 2013, 03:47 AM
Perfect workaround for me. Has not failed on Asus K53SC laptop. Thanks.