Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 12:36 PM
01-29-2002 12:36 PM
CDE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 12:40 PM
01-29-2002 12:40 PM
Re: CDE
# ps -ef | grep dt
daemon 1885 1864 0 15:23:47 ? 1:34 /usr/bin/X11/X :0 -auth /var/dt/worf:AAAa01864
root 1914 1864 0 15:23:52 ? 0:00 /usr/dt/bin/dtlogin
root 1864 1847 0 15:23:43 ? 0:00 /usr/dt/bin/dtlogin
root 1847 1 0 15:23:42 ? 0:00 /sbin/sh /usr/dt/bin/dtrc
root 2152 1914 0 15:24:24 ? 2:08 dtgreet -display worf:0
root 6722 1912 2 14:43:37 pts/ta 0:00 grep dt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 12:41 PM
01-29-2002 12:41 PM
Re: CDE
Look for all 'dt' processes:
# ps -aef | grep dt
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 12:58 PM
01-29-2002 12:58 PM
Re: CDE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 01:21 PM
01-29-2002 01:21 PM
Re: CDE
# /sbin/init.d/dtlogin.rc stop
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 01:24 PM
01-29-2002 01:24 PM
Re: CDE
Check the /etc/rc.log and see whether the CDE was started when the system booted last time. If it was enabled, then you can stop it if you need:
# /sbin/init.d/cdelogin.rc stop
# /sbin/init.d/dtlogin.rc stop
# ps -aef | grep dt - will tell you whether it's running now or not.
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2002 03:01 AM
01-30-2002 03:01 AM
Re: CDE
CDE is started by /sbin/rc3.d/S990/dtlogin.rc which points to /sbin/init.d/dtlogin.rc.
For any system with a local display there will be a :
a) dtlogin (parent) daemon
b) a child dtlogin process running the local CDE session on the local display (for remote connections you'll have additional dtlogin child processes too).
so your script will need to check for dtlogin processes, if true it could run /sbin/init.d/dtlogin.rc stop and check again for dtlogins ..... if they still exist kill them ?