Forum     

Go Back   Digit Technology Discussion Forum > Software > Open Source
Register FAQ Calendar Mark Forums Read

Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems.


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 09-11-2006, 11:58 PM   #1 (permalink)
Right Off the Assembly Line
 
Join Date: Sep 2005
Posts: 23
Red face Problem with xfce4 Desktop


Hi all,

Here's the story of my problem :

I am having Xfce4.2.3.2 and Gnome sessions installed in Fedora Core 3 .When i using my xfce session suddenly i am getting Gnome Desktop.
That is with that three icons(Computer,shortcut to home directory and trash) but xfce panel remains .

When i right click it in desktop i'm getting the popup which will appear in Gnome session instead of Xfce popup.When i logout and login i am getting the xfce screens.

what is my problem ?. Please tell me how to solve it .

Thanks
m.parthiban is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 10-11-2006, 02:32 AM   #2 (permalink)
String Phreak
 
mediator's Avatar
 
Join Date: Mar 2005
Location: In ur Evil Mind!
Posts: 2,457
Default Re: Problem with xfce4 Desktop

Thats strange! Why don't u upgrade the distro?? FC6 is out!
__________________
Bad Bad server.....No candy for u!
mediator is offline  
Old 10-11-2006, 03:05 AM   #3 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: Problem with xfce4 Desktop

Are you opening any GNOMe application? Specially nautilius.
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 11-11-2006, 12:28 AM   #4 (permalink)
Wise Old Owl
 
JGuru's Avatar
 
Join Date: Dec 2005
Location: Space-time continuum
Posts: 1,646
Default Re: Problem with xfce4 Desktop

@m.parthiban, Open the Terminal Window & give us the output of :

$ ps -ef | grep nautilus

You need to kill those nautilus process.
__________________
* Imagination is more important than knowledge.
-Albert Einstein
JGuru is offline  
Old 11-11-2006, 03:35 AM   #5 (permalink)
El mooooo
 
eddie's Avatar
 
Join Date: Jan 2006
Location: India
Posts: 1,414
Default Re: Problem with xfce4 Desktop

This is why I SOOOOOO HATE nautilus. You start a single instance of this thing and it just wants to take over everything...grrr...
eddie is offline  
Old 11-11-2006, 08:14 AM   #6 (permalink)
Right Off the Assembly Line
 
Join Date: Sep 2005
Posts: 23
Default Re: Problem with xfce4 Desktop

Quote:
Orginally posted by : JGuru
@m.parthiban, Open the Terminal Window & give us the output of :

$ ps -ef | grep nautilus

You need to kill those nautilus process.
Thanks mate , when i type that command i am getting the following output:
Code:
500       3401  3382  0 08:19 pts/1    00:00:00 grep nautilus
I don't know what to do next .Can u please explain ?
m.parthiban is offline  
Old 11-11-2006, 08:34 AM   #7 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Default Re: Problem with xfce4 Desktop

dont blame Nautilus for that.i think ur gnome-session is running also same time.
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org
praka123 is offline  
Old 11-11-2006, 12:31 PM   #8 (permalink)
Wise Old Owl
 
JGuru's Avatar
 
Join Date: Dec 2005
Location: Space-time continuum
Posts: 1,646
Default Re: Problem with xfce4 Desktop

@m.parthiban, You have to kill the Gnome Display Manager(GDM), for that run this command:

$ ps-ef | grep gdm

Your output will look similar to this one.

Code:

root      5741     1  0 06:11 ?        00:00:00 /usr/sbin/gdm
root      5742  5741  0 06:11 ?        00:00:00 /usr/sbin/gdm
root      5751  5742  4 06:11 tty7     00:01:48 /usr/bin/X :0 -br -audit 0 -auth /var/lib/gdm/:0.Xauth -nolisten tcp vt7
jguru    7681  6557  0 06:54 pts/1    00:00:00 grep gdm
NOTE: In your case the PID numbers will vary!!

The syntax for killing any Process is 'kill PID' where PID is a number

$ su -
(Enter password)

# kill 5741

# kill 5742

# kill 5751

# exit

This should solve your problem.
__________________
* Imagination is more important than knowledge.
-Albert Einstein

Last edited by JGuru; 12-11-2006 at 12:40 AM.
JGuru is offline  
Old 11-11-2006, 12:57 PM   #9 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: Problem with xfce4 Desktop

Quote:
Originally Posted by m.parthiban
Thanks mate , when i type that command i am getting the following output:
Code:
500       3401  3382  0 08:19 pts/1    00:00:00 grep nautilus
I don't know what to do next .Can u please explain ?
This means nautilus isn't running. Otherwise you would have got one more process with the name nautilus.
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 11-11-2006, 01:00 PM   #10 (permalink)
String Phreak
 
mediator's Avatar
 
Join Date: Mar 2005
Location: In ur Evil Mind!
Posts: 2,457
Default Re: Problem with xfce4 Desktop

^^ Correct nautilus isn't running. Thats the O/P of the grep command!

Neways It might be a bug in FC3.
__________________
Bad Bad server.....No candy for u!
mediator is offline  
Old 11-11-2006, 09:40 PM   #11 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Post Re: Problem with xfce4 Desktop

check whether any gnome* runs:
Code:
#ps -ax |grep gnome*
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org

Last edited by praka123; 12-11-2006 at 05:52 AM.
praka123 is offline  
Old 12-11-2006, 12:39 AM   #12 (permalink)
Wise Old Owl
 
JGuru's Avatar
 
Join Date: Dec 2005
Location: Space-time continuum
Posts: 1,646
Default Re: Problem with xfce4 Desktop

@Prakash, The command you have given doesn't produce any output, even though I'm running GNOME!!

But following one works fine.

$ ps -ef | grep gnome*
__________________
* Imagination is more important than knowledge.
-Albert Einstein
JGuru is offline  
Old 12-11-2006, 01:02 AM   #13 (permalink)
Right Off the Assembly Line
 
Join Date: Sep 2005
Posts: 23
Default Re: Problem with xfce4 Desktop

Quote:
Orginally posted by : JGuru @m.parthiban, You have to kill the Gnome Display Manager(GDM), for that run this command:

$ ps-ef | grep gdm
Yes , i am getting similar output as you have mentioned
Here is the output:
Code:
root      4338     1  0 00:59 ?        00:00:00 /usr/bin/gdm-binary -nodaemon
root      4368  4338  0 00:59 ?        00:00:00 /usr/bin/gdm-binary -nodaemon
root      4377  4368  2 00:59 ?        00:00:12 /usr/X11R6/bin/X :0 -audit 0 -auth /var/gdm/:0.Xauth -nolisten tcp vt8
500       4624  4538  0 01:07 pts/1    00:00:00 grep gdm

and i also killed as you said but when i kill any of the the process xfce is restarting immediately .

When i check after restarted again the same processes are running. So what should i do ?
m.parthiban is offline  
Old 12-11-2006, 01:18 AM   #14 (permalink)
String Phreak
 
mediator's Avatar
 
Join Date: Mar 2005
Location: In ur Evil Mind!
Posts: 2,457
Default Re: Problem with xfce4 Desktop

Try to update xfce as root => "yum -y update xfce*"
__________________
Bad Bad server.....No candy for u!
mediator is offline  
Old 12-11-2006, 05:51 AM   #15 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Post Re: Problem with xfce4 Desktop

Quote:
Originally Posted by JGuru
@Prakash, The command you have given doesn't produce any output, even though I'm running GNOME!!

But following one works fine.

$ ps -ef | grep gnome*
i mean,am sorry the correct one 2 try is:
Code:
ps  -ax  |grep gnome*
as already ur post is also doing the same.

paarthipan try this and post the o/p.
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org
praka123 is offline  
Old 12-11-2006, 12:41 PM   #16 (permalink)
Wise Old Owl
 
JGuru's Avatar
 
Join Date: Dec 2005
Location: Space-time continuum
Posts: 1,646
Default Re: Problem with xfce4 Desktop

@m.parthiban, From your output it's very clear that when XFCE session starts, GNOME session(GDM) also starts!!
@Eddie, I think you can shed some light on this one.
__________________
* Imagination is more important than knowledge.
-Albert Einstein
JGuru is offline  
Old 13-11-2006, 12:15 PM   #17 (permalink)
Right Off the Assembly Line
 
Join Date: Sep 2005
Posts: 23
Default Re: Problem with xfce4 Desktop

Quote:
Originally posted by : prakash kerala
paarthipan try this and post the o/p.
Output i got:
Code:
ps  -ax  |grep gnome*
Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.3/FAQ
 3340 pts/1    S+     0:00 grep gnome*
Quote:
Originally posted by : JGuru
@Eddie, I think you can shed some light on this one.
What u mean ? Sorry, I cannot get you.
m.parthiban is offline  
Old 13-11-2006, 04:26 PM   #18 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Post Re: Problem with xfce4 Desktop

@paarthipan:
so no gnome stuffs are running;only gdm in "Xfce DE".so i think you need to purge gdm and dependencies and may be instead use xdm as desktop manager.
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org
praka123 is offline  
Closed Thread

Bookmarks

Thread Tools
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
Trackbacks are On
Pingbacks are On
Refbacks are On


 
Latest Threads
- by icebags
- by Sujeet
- by clinton

Advertisement




All times are GMT +5.5. The time now is 10:29 AM.


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

Search Engine Optimization by vBSEO 3.3.2