 |
 |
 |
 |
| Fedora 12 Alpha, Beta & Release Candidates For discussions on the Bleeding Edge of Fedora - the builds that will one day become Fedora 12. |

21st October 2009, 12:19 AM
|
 |
Un-Retired Administrator
|
|
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,929

|
|
|
What happened? NetworkManager broke?
Fired up the trusty old laptop tonight only to be greeted with this (screenshot attached). No networking at all, wireless or wired. Had to disable NetworkManager and enable network so I could get hooked up and see if there were important updates. I was hoping that something would magically fix my issue but no such luck. Now I'm tethered to an Ethernet cable. This stinks. Anyone else with the same trouble?
__________________
Glenn
The Bassinator © ®
Laptop: Toshiba Satellite / Intel Core 2 Duo 1.73 GHz / 2GB / 160GB / Intel Mobile 945GM/GMS/GME/943/940GML Integrated Graphics
Desktop: BioStar MCP6PB M2+ / AMD Phenom 9750 Quad Core / 4GB / 1TB SATA / 500GB SATA / EVGA GeForce 8400 GS 1GB
|

21st October 2009, 12:57 AM
|
|
Guest
|
|
Posts: n/a

|
|
|
love the screenshot there....had a look in Bugzilla for a similiar issue glenn?. i havent even tried the livecd yet but i'll let you know if i get the same problem
|

21st October 2009, 01:06 AM
|
 |
Un-Retired Administrator
|
|
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,929

|
|
Haven't looked at all Demz. I'm dead tired and am shutting this thing down as soon as I press "Post Quick Reply". I've been using "12" since it was available as rawhide. It has been an excellent OS for me and has actually been my daily user, totally ignoring the Fedora 11 install on this same computer. This morning all was well. May have done some updates. Don't remember at the moment. Booted tonight to this ...
Thanks for the reply Demz. Off to the couch with me. If I turn the TV on I'll surely be asleep in 20 minutes
__________________
Glenn
The Bassinator © ®
Laptop: Toshiba Satellite / Intel Core 2 Duo 1.73 GHz / 2GB / 160GB / Intel Mobile 945GM/GMS/GME/943/940GML Integrated Graphics
Desktop: BioStar MCP6PB M2+ / AMD Phenom 9750 Quad Core / 4GB / 1TB SATA / 500GB SATA / EVGA GeForce 8400 GS 1GB
|

21st October 2009, 03:07 AM
|
 |
Retired Administrator
|
|
Join Date: Oct 2006
Posts: 21,509

|
|
Press Alt+F2 and run
Code:
nm-applet --sm-disable
I have the same issue
|

21st October 2009, 06:11 AM
|
 |
Fedora QA Community Monkey
|
|
Join Date: Dec 2008
Location: Vancouver, BC
Posts: 3,764

|
|
|
|

21st October 2009, 08:12 AM
|
 |
Un-Retired Administrator
|
|
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,929

|
|
Quote:
Originally Posted by leigh123linux
Press Alt+F2 and run
Code:
nm-applet --sm-disable
I have the same issue 
|
Thank you Leigh! That worked
__________________
Glenn
The Bassinator © ®
Laptop: Toshiba Satellite / Intel Core 2 Duo 1.73 GHz / 2GB / 160GB / Intel Mobile 945GM/GMS/GME/943/940GML Integrated Graphics
Desktop: BioStar MCP6PB M2+ / AMD Phenom 9750 Quad Core / 4GB / 1TB SATA / 500GB SATA / EVGA GeForce 8400 GS 1GB
|

21st October 2009, 10:57 PM
|
 |
Fedora QA Community Monkey
|
|
Join Date: Dec 2008
Location: Vancouver, BC
Posts: 3,764

|
|
|
right - as mentioned in the bug report, only the *first* attempt to run nm-applet in any session fails. all subsequent attempts work.
|

21st October 2009, 11:13 PM
|
|
Registered User
|
|
Join Date: Oct 2007
Posts: 26

|
|
Hi all!
I can report the same problem running a Thinkpad W500 a fresh 32-bit install. I get the same error as the OP and the suggested workaround works. But in my case I can start nm-applet manually any way I want, even without the --sm-disable flag. nm-applet actually starts as long as it is not called immediately at login.
If I let nm-applet start through a small bash script instead of being called directly in Startup Applications, it starts just fine if the script looks like this:
Code:
#!/bin/sh
sleep 1
nm-applet --sm-disable &
but not like this:
Code:
#!/bin/sh
sleep 0
nm-applet --sm-disable &
Weird stuff but might be a clue for what is going on. Something is not in its right state at login but seems to become so very quickly.
I have not figured out how to execute multiple executive commands in a single Startup Applications field. Tweaking the Network Manager command line:
Code:
nm-applet --sm-disable
so that it instead reads:
Code:
sleep 1 && nm-applet --sm-disable
seems to result in nm-applet not being executed at all.
Last edited by korpenkraxar; 21st October 2009 at 11:38 PM.
Reason: Updated bash script according to Adam's remark
|

21st October 2009, 11:31 PM
|
 |
Fedora QA Community Monkey
|
|
Join Date: Dec 2008
Location: Vancouver, BC
Posts: 3,764

|
|
the --sm-disable isn't strictly required, but it's sensible to run it with that parameter. running it with that parameter is not the workaround for this issue, simply running it *twice* is the workaround...we just recommend doing it with that parameter as that's the right way to run it in any case
|

22nd October 2009, 12:01 AM
|
|
Registered User
|
|
Join Date: Oct 2007
Posts: 26

|
|
Quote:
Originally Posted by AdamW
simply running it *twice* is the workaround...
|
Hi Adam!
Is it really running it twice that is the workaround? What happens if you just duplicate Network Manager in Startup Applications?
I would rather suggest that we need to wait for something else to settle before nm-applet works. I can start it successfully at the first attempt as long as it is not started immediately.
Googling around I found some old Ubuntu references to an icon cache needing to be updated which apparently triggered the same error. While I do not think that it is the very same problem here (and their fix did not work for me), it may still be something related to the graphical interface that nm-applet tries to attach to.
Actually, if I do a full reboot I need to up the sleep time in my script to something like ten seconds for it to work reliably at the first login. As long as the gnome-panel has had time to settle it works, for me.
|

22nd October 2009, 12:08 AM
|
 |
Un-Retired Administrator
|
|
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,929

|
|
Quote:
Originally Posted by AdamW
right - as mentioned in the bug report, only the *first* attempt to run nm-applet in any session fails. all subsequent attempts work.
|
Adam, next time I boot the F12 machines I'll try running nm-applet without --sm-disable and will try to remember to let you know how I make out. Thanks for the reply(s).
Reading further down this thread, would you like me to try with or without?
__________________
Glenn
The Bassinator © ®
Laptop: Toshiba Satellite / Intel Core 2 Duo 1.73 GHz / 2GB / 160GB / Intel Mobile 945GM/GMS/GME/943/940GML Integrated Graphics
Desktop: BioStar MCP6PB M2+ / AMD Phenom 9750 Quad Core / 4GB / 1TB SATA / 500GB SATA / EVGA GeForce 8400 GS 1GB
|

22nd October 2009, 12:18 AM
|
 |
Fedora QA Community Monkey
|
|
Join Date: Dec 2008
Location: Vancouver, BC
Posts: 3,764

|
|
|
glennzo: either will work, but with --sm-disable is the right way to run it. to be clear: the --sm-disable parameter has *absolutely nothing to do* with this bug at all. it's just a parameter that is usually used when running nm-applet. if you check how it's run automatically when you log in, it's run with --sm-disable.
korpen: yeah, it's more running it later that's the fix, you're right. this is the icon cache issue you mention, in fact, according to the bug report.
|

22nd October 2009, 12:41 AM
|
|
Registered User
|
|
Join Date: Oct 2007
Posts: 26

|
|
|
Haha! I just had a second look at the report. Silly bug that is going to cause a lot of headaches and grumpy beta reviewers/testers. Well, this is why there are betas in the first place. Looking forward to the fix.
|

22nd October 2009, 09:23 AM
|
 |
Registered User
|
|
Join Date: Sep 2009
Posts: 64

|
|
|
the start-up script works fine... will be glad when they fix the problem though
__________________
| Gateway DX4710-UB301A | Intel Core2 Quad Q6700@2.66Ghz w/6 Gb's of ram | OCZ-Vertex3 120 Gb SSD | Western Digital 160 Gb HDD | Western Digital 640 Gb HDD |
| Nvidia GeForce GTX 550 Ti | Dynex Sound Card w/5.1 Surround and Optical Audio Out | Windows 7 Professional x86_64 | Fedora 17 x86_64 |
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Current GMT-time: 07:33 (Wednesday, 22-05-2013)
|
|
 |
 |
 |
 |
|
|