| Red Hat This forum is for the discussion of Red Hat Linux. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
08-19-2010, 07:21 AM
|
#1
|
|
Member
Registered: Aug 2010
Posts: 40
Rep:
|
nm-applet icon missing
Hello everyone,
I am completely new both here and in Linux. I carefully read the threads where you explain where to post what, and even searched for previous postings which might have already answered my question, unfortunately, I still got the problem.
Since my distro is CentOS 5.5, I decided to post here, hope it was the right decision (if not, please let me know where I should have posted).
So as the subject says, I installed CentOS and can't manage to make the nm-applet icon show on the notification area.
I read previous threads about this, which suggest that perhaps nm-applet is not running, or that perhaps I did not add a notification area to the panel, or that maybe nm-applet --sm-disable is not showing on sys-sessions. Unfortunately, all the above is ok, i.e, nm-applet is running, I do have a notification area and "nm-applet --sm-disable" appears as it should in the right place.
Do you have any other suggestions?
Many thanks in advance.
Linux.Girl
Last edited by Linux.Girl; 08-19-2010 at 07:22 AM.
|
|
|
|
08-19-2010, 04:50 PM
|
#2
|
|
Member
Registered: Aug 2010
Posts: 40
Original Poster
Rep:
|
Hello, if I give more details maybe someone can help me? I tried to do a killall gnome-panel and then check .xsession-errors to see if I could get a clue of what is wrong. Of course, I took this tip from someone else and even more "of course", I did not understand the result. Here is what is said, maybe it will give the experts a clue as to why my nm-applet icon is not showing?
cat /home/me/.xsession-errors gives the following:
** (nm-applet:4319): WARNING **: No connections defined
** (nm-applet:4319): WARNING **: Invalid return value type: GPtrArray_DBusGObjectPath_
Introspect error: The name edu.duke.linux.yum was not provided by any .service files
Traceback (most recent call last):
File "/usr/bin/puplet", line 467, in ?
main()
File "/usr/bin/puplet", line 464, in main
p.run()
File "/usr/bin/puplet", line 451, in run
self._refreshInfo()
File "/usr/bin/puplet", line 191, in _refreshInfo
if self.updatesObject is not None and \
AttributeError: DBusException instance has no attribute '_dbus_error_name'
I don't know if this is related or not, can you please please help me?
Thanks in advance.
Linux.Girl
Last edited by Linux.Girl; 08-19-2010 at 04:54 PM.
|
|
|
|
08-19-2010, 05:42 PM
|
#3
|
|
Senior Member
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu
Posts: 1,053
Rep: 
|
When the nm-applet icon doesn't show, it means either nm-applet isn't running, or NetworkManager isn't running. Open a terminal window and enter
Code:
ps ax | grep nm-applet
to see if nm-applet is running, and
Code:
ps ax | grep NetworkManager
to see if NetworkManager is running. If Networkmanager isn't running, then, as root, run
Code:
/etc/init.d/NetworkManager
I had a problem today in Fedora 14 alpha with nm-applet not showing up or running even though NetworkManager appeared to be running. My fix was to downgrade the versions of NetworkManager, NetworkManager-glib, and
NetworkManager-gnome.
|
|
|
1 members found this post helpful.
|
08-20-2010, 07:05 AM
|
#4
|
|
Member
Registered: Aug 2010
Posts: 40
Original Poster
Rep:
|
WOW!!! it worked, can't believe it - so many thanks!!!
Now the weird thing is that both network manager and applet appeared as running, but it seems they weren't after all. After I did a start on /etc/init.d/NetworkManager the icon appeared!
[m@localhost ~]$ ps ax | grep nm-applet
3257 ? Ss 0:00 nm-applet --sm-disable
3584 pts/1 S+ 0:00 grep nm-applet
[me@localhost ~]$ ps ax | grep NetworkManager
3272 ? S 0:00 /usr/sbin/nm-system-settings --config /etc/NetworkManager/nm-system-settings.conf
3586 pts/1 R+ 0:00 grep NetworkManager
[me@localhost ~]$ su
[root@localhost me]# /etc/init.d/NetworkManager start
Setting network parameters... [ OK ]
Starting NetworkManager daemon: [ OK ]
[root@localhost me]#
Why would networkmanager and applet appear as running when actually they weren't?
|
|
|
|
08-20-2010, 03:57 PM
|
#5
|
|
Senior Member
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu
Posts: 1,053
Rep: 
|
Quote:
|
After I did a start on /etc/init.d/NetworkManager the icon appeared!
|
That is how it works for me (when working properly).
Are you saying that after you did the start on /etc/init.d/NetworkManager it wasn't actually working even though the nm-applet icon appeared?
|
|
|
1 members found this post helpful.
|
08-20-2010, 07:30 PM
|
#6
|
|
Senior Member
Registered: Sep 2009
Location: Srbobran, Serbia
Distribution: CentOS 5.5 i386 & x86_64
Posts: 1,115
Rep: 
|
Restart the system and check if nm-applet shows. If not, then you need to set NetworkManager to start on boot.
I have not checked, but it is possible that if NetworkManager service is not running nm-applet does not show icon.
|
|
|
|
08-21-2010, 06:50 AM
|
#7
|
|
Member
Registered: Aug 2010
Posts: 40
Original Poster
Rep:
|
Hi RockDoctor, thanks for your help - what you told me to do worked. I started networkmanager and the icon appeared. I was just puzzled because BEFORE I started networkmanager, it was showing itself as working and the icon was not there. The I hit restart (after your tip) and the icon appeared.
In any event, case solved, many thanks for the help!
@DrLove73 - how do I make sure networkmanager starts on boot?
Thanks in advance.
Linux.Girl
|
|
|
|
08-21-2010, 10:51 AM
|
#8
|
|
Senior Member
Registered: Sep 2009
Location: Srbobran, Serbia
Distribution: CentOS 5.5 i386 & x86_64
Posts: 1,115
Rep: 
|
System -> Administration -> Server Settings -> Services
or
System -> Administration -> Services
and then make sure you tick NetworkManager ans Save settings.
Manually, you would run (as root):
Code:
chkconfig --level 2345 NetworkManager on
|
|
|
1 members found this post helpful.
|
| Thread Tools |
Search this Thread |
|
|
|
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
|
|
|
All times are GMT -5. The time now is 07:09 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|