how to verify xdm/gdm or dtlogin is setup to be used by the system


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers how to verify xdm/gdm or dtlogin is setup to be used by the system
# 1  
Old 10-26-2009
how to verify xdm/gdm or dtlogin is setup to be used by the system

Hi All,

I was going through a UNIX system administration handbook and while reading found the below sentence

"init is also responsible for spawning graphical login systems such as xdm,gdm, or dtlogin if the system is et up to use them"

My question is,how to verify on a UNIX machine,whether the system is been setup to use any of the above mentioned graphical logion systems.

Thanks for the help

Regards
Anantha Subramanian Natarajan
# 2  
Old 10-28-2009
Case of dt:
You should see a dtlogin process running on the box launched by root...
e.g (HP-UX)
Code:
#HP-UX:
ant:/home/vbe $ ps -ef|grep dt|grep root
    root  2443  2421  0  Apr 29  ?         0:00 /usr/dt/bin/dtlogin
    root  2421     1  0  Apr 29  ?         0:00 /sbin/sh /usr/dt/bin/dtrc
    root 20360  1115  0  Jul 20  ?         0:00 /usr/dt/bin/rpc.ttdbserver
#AIX:
 $  ps -ef|grep dt|grep root
    root 1134804  168038   0   Oct 14      -  0:00 /usr/dt/bin/dtlogin

Setup:
e.g. HP
Code:
ant:/home/vbe $ ll /sbin/rc3.d|grep dtl
lrwxr-xr-x   1 root       sys             23 Jun 23  2003 S990dtlogin.rc -> /sbin/init.d/dtlogin.rc

In other words it depends of the OS... some use /etc/inittab, some use /sbin/rcX.d ot /etc/rcX.d levels where the scripts are in the correct level to start/stop and now you have system that start services...
# 3  
Old 11-03-2009
Ubuntu Linux

Hi vbe,

Thanks for the reply ......Can you please let me know,how I could verify the same on Linux Ubuntu ....

Once again thanks

Regards
Anantha Subramanian Natarajan
# 4  
Old 11-03-2009
ubuntu uses gnome. so look for "gdm" is running... and if you're logged in on your ubuntu machine to the desktop, you can be sure gdm is running. if you use remote login (ssh) you can use the above grep command, just with gdm...
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Ubuntu

What does ?xdm? under the IDLE column mean?

I'd appreciate an explanation of the ?xdm? listing under the IDLE column (see below) after I ran the 'w' command in BASH. I recently used 'umask 0022' but reset it to 'umask 0000' I can't think this would have caused the ?xdm?, but as a total novice, I'd like some help. USER TTY FROM ... (1 Reply)
Discussion started by: hal_v_1937
1 Replies

2. Red Hat

Static IP Address setup for vm as well as the host system

Hello, Greetings!! I have a server with 3 TB of disk space and 12 GB RAM and a i7 processor. What I did thus far is to install Oracle Enterprise Linux (OEL 5.7)as the host system and install Oracle Virtual box and created 3 VM's. Installed OEL 5.7 on one of the VM, working on installing... (1 Reply)
Discussion started by: rparavastu
1 Replies

3. Solaris

What is the difference between XDM and Citrix

Hi all, I have remote 2Mbs connection to server. I am wondering - what is the difference (i mean - transferring data) between Citrix sessions and XDMCP? Why I can connect to server using Citrix and when clicking to open some application its opening fast, but when i am clicking to open same... (1 Reply)
Discussion started by: nypreH
1 Replies

4. UNIX for Dummies Questions & Answers

What is the difference between XDM and Citrix

Hi all, I have remote 2Mbs connection to server. I am wondering - what is the difference (i mean - transferring data) between Citrix sessions and XDMCP? Why I can connect to server using Citrix and when clicking to open some application its opening fast, but when i am clicking to open same... (0 Replies)
Discussion started by: nypreH
0 Replies

5. Filesystems, Disks and Memory

How To setup a Diskless Swap System.

This is a guide for setting up your computer with a fast swap system using usb memory sticks. A detailed study of the theories behind this setup can be found here. While this How-To does not include the CFLRU replacement algorithm, it does show the performance benefits of using NAND flash memory... (2 Replies)
Discussion started by: Johnny_Thumbs
2 Replies

6. Shell Programming and Scripting

how to verify that copied data to remote system is identical with local data.

I have created simple shell script #!/bin/sh echo `date`; echo "Start .... find . -mtime +95 -print > /tmp/files.txt for file in `cat /tmp/files.txt` do echo "copying file - $file" /usr/local/bin/scp -p -P 2222 $file remote.hostname:/file/path echo "copid file -... (3 Replies)
Discussion started by: ynilesh
3 Replies

7. IP Networking

Setup 2 NIC cards in one UNIX system

Hi; I have a UNIX box (SCO 5.0.2) with two (2) NIC cards. One card (NIC1) talks to a network 57.14.65.x/27. The other card NIC2) talks to users on 57.14.103.x and 57.14.105.x with subnet mask of 255.255.0.0. If I set NIC2 to this subnet mask (255.255.0.0) it seems like the NIC traffic is now... (2 Replies)
Discussion started by: texaspanama
2 Replies

8. UNIX for Advanced & Expert Users

System wide CDE setup

Does anyone know how to make system wide changes to the CDE's front panel icons? I dont know if it matters but im running Solaris 9. THanks (1 Reply)
Discussion started by: meyersp
1 Replies
Login or Register to Ask a Question