Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > The Dungeon > Archived (Click Header To See Sub-Forums) > Fedora 12 Alpha, Beta & Release Candidates
FedoraForum Search

Forgot Password? Join Us!

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

 
 
Thread Tools Search this Thread Display Modes
  #1  
Old 21st October 2009, 12:19 AM
glennzo's Avatar
glennzo Offline
Un-Retired Administrator
 
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,929
linuxfedorafirefox
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?
Attached Thumbnails
Click image for larger version

Name:	Screenshot-Missing resources.png
Views:	111
Size:	12.2 KB
ID:	18249  
__________________
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
  #2  
Old 21st October 2009, 12:57 AM
Demz
Guest
 
Posts: n/a
windows_98_nt_2000firefox
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
  #3  
Old 21st October 2009, 01:06 AM
glennzo's Avatar
glennzo Offline
Un-Retired Administrator
 
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,929
linuxfedorafirefox
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
  #4  
Old 21st October 2009, 03:07 AM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
linuxfedorafirefox
Press Alt+F2 and run


Code:
nm-applet --sm-disable

I have the same issue
  #5  
Old 21st October 2009, 06:11 AM
AdamW's Avatar
AdamW Online
Fedora QA Community Monkey
 
Join Date: Dec 2008
Location: Vancouver, BC
Posts: 3,764
linuxfedorafirefox
https://bugzilla.redhat.com/show_bug.cgi?id=529766
__________________
Adam Williamson | awilliam AT redhat DOT com
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | identi.ca: adamwfedora
http://www.happyassassin.net
  #6  
Old 21st October 2009, 08:12 AM
glennzo's Avatar
glennzo Offline
Un-Retired Administrator
 
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,929
linuxfedorafirefox
Quote:
Originally Posted by leigh123linux View Post
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
  #7  
Old 21st October 2009, 10:57 PM
AdamW's Avatar
AdamW Online
Fedora QA Community Monkey
 
Join Date: Dec 2008
Location: Vancouver, BC
Posts: 3,764
linuxfedorafirefox
right - as mentioned in the bug report, only the *first* attempt to run nm-applet in any session fails. all subsequent attempts work.
__________________
Adam Williamson | awilliam AT redhat DOT com
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | identi.ca: adamwfedora
http://www.happyassassin.net
  #8  
Old 21st October 2009, 11:13 PM
korpenkraxar Offline
Registered User
 
Join Date: Oct 2007
Posts: 26
linuxfedorafirefox
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
  #9  
Old 21st October 2009, 11:31 PM
AdamW's Avatar
AdamW Online
Fedora QA Community Monkey
 
Join Date: Dec 2008
Location: Vancouver, BC
Posts: 3,764
linuxfedorafirefox
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
__________________
Adam Williamson | awilliam AT redhat DOT com
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | identi.ca: adamwfedora
http://www.happyassassin.net
  #10  
Old 22nd October 2009, 12:01 AM
korpenkraxar Offline
Registered User
 
Join Date: Oct 2007
Posts: 26
linuxfedorafirefox
Quote:
Originally Posted by AdamW View Post
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.
  #11  
Old 22nd October 2009, 12:08 AM
glennzo's Avatar
glennzo Offline
Un-Retired Administrator
 
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,929
linuxfedorafirefox
Quote:
Originally Posted by AdamW View Post
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
  #12  
Old 22nd October 2009, 12:18 AM
AdamW's Avatar
AdamW Online
Fedora QA Community Monkey
 
Join Date: Dec 2008
Location: Vancouver, BC
Posts: 3,764
linuxfedorafirefox
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.
__________________
Adam Williamson | awilliam AT redhat DOT com
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | identi.ca: adamwfedora
http://www.happyassassin.net
  #13  
Old 22nd October 2009, 12:41 AM
korpenkraxar Offline
Registered User
 
Join Date: Oct 2007
Posts: 26
linuxfedorafirefox
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.
  #14  
Old 22nd October 2009, 09:23 AM
thomthom's Avatar
thomthom Offline
Registered User
 
Join Date: Sep 2009
Posts: 64
linuxfedorafirefox
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 |
  #15  
Old 22nd October 2009, 05:22 PM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
linuxfedorafirefox
This new NetworkManager version fixes the issue for me.

http://koji.fedoraproject.org/koji/b...buildID=137758
 

Tags
broke, happened, networkmanager

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Removing KDE broke NetworkManager Galvin Tjime Using Fedora 1 27th April 2009 12:41 AM
NetworkManager / NetworkManager Display Problem Malachai Hardware & Laptops 0 25th December 2007 10:52 PM
What happened??? Trek1701 Using Fedora 16 1st May 2006 07:47 PM
I do not know what happened. Please help Nevek Using Fedora 2 12th June 2005 06:44 AM


Current GMT-time: 07:33 (Wednesday, 22-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat