2 questions: /usr/jdk/jdk1.5.0_06/bin/java and Also dtlogin screen blank?

Hey ya'll,

I have 2 questions, hopefully somebody will have seen one or bothof them before...

1:

Anyone know what /usr/jdk/jdk1.5.0_06/bin/java is doing running on my machine by default? That process is eating up CPU time. Even when totally otherwise idle, there is a 0.04 load. That's when I'm logged in through SSH and no one is logged in at the console...

2:

Weird thing with dtlogin... It seems to wait 5 minutes, go into screnn blank mode, then wait 5 more minutes, then come out of screen blank mode and stay that way forever. In the past it has just waited a little while, gone into screen blank mode and stayed that way until it detected mouse or keyboard movement... Is there anywhere I can configure the screen blank settings for dtlogin?

Thanks a million in advance!

ciao, erich

[842 byte] By [bubble1975] at [2007-11-26 8:35:54]
# 1
Oh yeah, this is the complete java process that is running:/usr/jdk/jdk1.5.0_06/bin/java -Xms4M -Xmx64M -classpath /usr/share/lib/jdmk/jdmAnyone know what that is doing? And do I need it, or how I can stop it at boot time?-erich
bubble1975 at 2007-7-6 22:05:49 > top of Java-index,Solaris Operating System,Solaris 10 Features...
# 2
Oh, yeah, and I'm running Solaris 10 release 6/06 .... Sorry about the multiple emails... :)
bubble1975 at 2007-7-6 22:05:49 > top of Java-index,Solaris Operating System,Solaris 10 Features...
# 3

Read this:

http://marc.theaimsgroup.com/?l=opensolaris-discuss&m=115472216716325&w =2

common-agent-container-1

Says it's not to do with containers at all on the thread replies.

Says it could be related to software updates.

Solution from thread:

/usr/sbin/cacaoadm stop

/usr/sbin/cacaoadm set-param java-flags="`cacaoadm get-param java-flags -v` \

-XX:PerfDataSamplingInterval=500"

/usr/sbin/cacaoadm start

mipsdr at 2007-7-6 22:05:49 > top of Java-index,Solaris Operating System,Solaris 10 Features...
# 4

Dtlogin is just a process that runs with the XSun/Xorg server. You need to research DPMS modes for X11 and edit the appropriate file. On x86, it's xorg.conf, and can be regenerated with /usr/X11R6/bin/xorgconfig. The following is what you'd add under the monitor section:

Option "DPMS"

This under the "ServerLayout" part:

Option "BlankTime""4"

Option "StandbyTime""0"

Option "SuspendTime""0"

Option "OffTime""5"

Then save the file, and use xset to set a timeout:

xset dpms 0 360 420 (5 min)

Go back to the login screen to have it reset.

http://www.shallowsky.com/linux/x-screen-blanking.html

mipsdr at 2007-7-6 22:05:49 > top of Java-index,Solaris Operating System,Solaris 10 Features...