Sep 25, 2002 #1 sonnyjim IS-IT--Management Oct 23, 2001 66 EU Okay , so I'm new to this : What is the command to kill a process using HP-UX ? Thanks... "What happens if I press *that* button?"
Okay , so I'm new to this : What is the command to kill a process using HP-UX ? Thanks... "What happens if I press *that* button?"
Sep 25, 2002 #2 Edcrosbys ISP Apr 26, 1999 112 US Find the process id of what you are trying to kill and then type kill UseProcessIdHere .Ie: #ps -ef ... root 9241 1092 0 14:57:11 ttyp1 0:00 telnetd -b /etc/issue ... #kill 9241 If that will not get rid of it then do a kill -9 UseProcessIDHere That just kills the program and is not nice at all. Upvote 0 Downvote
Find the process id of what you are trying to kill and then type kill UseProcessIdHere .Ie: #ps -ef ... root 9241 1092 0 14:57:11 ttyp1 0:00 telnetd -b /etc/issue ... #kill 9241 If that will not get rid of it then do a kill -9 UseProcessIDHere That just kills the program and is not nice at all.
Sep 26, 2002 Thread starter #3 sonnyjim IS-IT--Management Oct 23, 2001 66 EU Excellent, Thanks!! "What happens if I press *that* button?" Upvote 0 Downvote