Sponsored Content
Full Discussion: X windows not working
Special Forums UNIX Desktop Questions & Answers X windows not working Post 302530326 by lramsb4u on Monday 13th of June 2011 03:55:27 PM
Old 06-13-2011
X windows not working

Hi all,

Fedora 10 workstation is not able to login to X windows (GUI).But works fine on command line. Below are command outputs from two workstations: one with problem and another working fine (both are identical in h/w and run fedora core 10). Please help me in this. Thanks in advance!

Below are from the one where i have problem to login to GUI


Code:
[root@console-0124 ~]# ps -ef|grep X

Code:
root 3909 3870 0 Jun06 tty7 00:00:32 /usr/bin/X :0 -auth /var/lib/xdm/authdir/authfiles/A:0-4Mjszr
vct 11530 11311 0 Jun07 ? 00:00:00 /usr/bin/ssh-agent /etc/X11/xinit/Xclients root 19516 19381 0 14:48 pts/0 00:00:00 grep X [root@console-0124 ~]# ps -ef|grep Xorg root 19518 19381 0 14:48 pts/0 00:00:00 grep Xorg [root@console-0124 ~]# ps -ef|grep bonobo root 19520 19381 0 14:49 pts/0 00:00:00 grep bonobo [root@console-0124 ~]# ps -ef|grep nauti root 19522 19381 0 14:49 pts/0 00:00:00 grep nauti [root@console-0124 ~]#



Below are from the workstation which is working fine

Code:
 [root@console-recon-0124 ~]# ps -ef|grep X
root      5078  5077  0 May11 tty1     02:36:41 /usr/bin/Xorg :0 -nr -verbose -auth /var/run/gdm/auth-for-gdm-QfEeV5/database -nolisten tcp vt1
root     23060 22801  0 13:51 pts/0    00:00:00 grep X
[root@console-recon-0124 ~]# ps -ef|grep Xorg
root      5078  5077  0 May11 tty1     02:36:41 /usr/bin/Xorg :0 -nr -verbose -auth /var/run/gdm/auth-for-gdm-QfEeV5/database -nolisten tcp vt1
root     23062 22801  0 13:51 pts/0    00:00:00 grep Xorg
[root@console-recon-0124 ~]# ps -ef|grep bonobo
vct       5620     1  0 May11 ?        00:00:00 /usr/libexec/bonobo-activation-server --ac-activate --ior-output-fd=17
vct      20225     1  0 May27 ?        00:00:00 /usr/libexec/bonobo-activation-server --ac-activate --ior-output-fd=22
root     23064 22801  0 13:51 pts/0    00:00:00 grep bonobo
[root@console-recon-0124 ~]# ps -ef|grep nauti
vct       5618  5340  0 May11 ?        00:00:33 nautilus --no-desktop --browser
root     23066 22801  0 13:52 pts/0    00:00:00 grep nauti
[root@console-recon-0124 ~]#

 

6 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Working with remote Unix files systems from Windows

I am currently using Samba to access remote Unix file systems from Windows. However, it is slow, and I presume insecure in the sense that file contents are transmitted unencrypted. I also wonder if passwords are transmitted in plain text in this protocol or not. For these reasons I am looking for... (2 Replies)
Discussion started by: Bilge
2 Replies

2. Solaris

vsftp is not working only when i ftp from windows server

Hello Gurus, Naif is implemented for only for port 21 for few windows servers. I have made my linux 5.1 as my FTP server. After installing vsftpd i could ftp from other linux server. linux to linux (ftp server) But same when i ftp from other windows server which only port 21 is enabled.... (0 Replies)
Discussion started by: bullz26
0 Replies

3. Linux

vsftp is not working only when i ftp from windows server

Hello Gurus, Naif is implemented for only for port 21 for few windows servers. I have made my linux 5.1 as my FTP server. After installing vsftpd i could ftp from other linux server. linux to linux (ftp server) But same when i ftp from other windows server which only port 21 is enabled.... (2 Replies)
Discussion started by: bullz26
2 Replies

4. Shell Programming and Scripting

FTP using script not working (for transfering file from a remote unix server to windows PC.)

hi, Im using the following code for FTP #!/usr/bin/ksh ftp -v -n "10.29.45.11" << cmd user "mahesva" "mahesva123" get rtl.tar quit cmd Below is the log when i run the above code ********************************** Connected to 10.29.45.11. 220 (vsFTPd 2.0.1) 530 Please login with USER... (20 Replies)
Discussion started by: dll_fpga
20 Replies

5. Red Hat

RHEL5 xdmcp not working for windows 7

I am running a RHEL5 box and I have xdmcp up and running. I want the hostname of this box showing up only in the xdmcp choosers of certain specific systems, and in RHEL5 using gdm, it appears the only way to prevent the name from appearing in all xdmcp choosers is to use the hosts.allow file. This... (0 Replies)
Discussion started by: smd
0 Replies

6. Red Hat

Nslookup working but ping not working at windows client

Hi Team we have created a DNS server at RHEL6.2 environment in 10.20.203.x/24 network. Everything is going well on linux client as nslookup, ping by host etc in entire subnet. We are getting problem in windows client as nslookup working as well but not ping. all the firewall is disabled and... (5 Replies)
Discussion started by: boby.kumar
5 Replies
get_desktop_resolution(3alleg4) 				  Allegro manual				   get_desktop_resolution(3alleg4)

NAME
get_desktop_resolution - Finds out the desktop resolution. Allegro game programming library. SYNOPSIS
#include <allegro.h> int get_desktop_resolution(int *width, int *height); DESCRIPTION
Finds out the currently selected desktop resolution. You can use this information to avoid creating windows bigger than the current resolu- tion. This is especially important for some windowed drivers which are unable to create windows bigger than the desktop. Each parameter is a pointer to an integer where one dimension of the screen will be stored. Under some OSes, switching to a full screen graphics mode may automatically change the desktop resolution. You have, therefore, to call this function before setting any graphics mode in order to retrieve the real desktop resolution. Example: int width, height; allegro_init(); ... if (get_desktop_resolution(&width, &height) == 0) { /* Got the resolution correctly */ } RETURN VALUE
Returns zero on success, or a negative number if this information is not available or does not apply, in which case the values stored in the variables you provided for `width' and `height' are undefined. SEE ALSO
desktop_color_depth(3alleg4), set_gfx_mode(3alleg4) Allegro version 4.4.2 get_desktop_resolution(3alleg4)
All times are GMT -4. The time now is 08:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy