Originally posted by: SystemAdmin
What is the results of ps -ef | grep 725242, what is the process doing. You didn't say what that process was. If it is a ksh, then you should be able to kill it with no problem.
For example these are old processes on my system for a getty that is spawned for the virtual terminal
-
who -l
LOGIN lft0 Jun 18 13:54 old 315552
LOGIN vty0 Jun 18 13:57 old 323764
-
ps -ef | grep 323764
root 323764 1 0 Jun 18 - 60:46 /usr/sbin/getty /dev/console
Check for what is using pts/3
-
ps -ef | grep -e "pts/3"
jwtesch 430080 602144 0 Nov 16 - 0:00 sshd: jwtesch@pts/3
You might see when people logged on with last, and pipe that to still and see more information.
-
last | grep still