which command is used to stop a running process in unix?
Answers were Sorted based on User's Feedback
Answer / manikandant
If you want stop the process, use the below command.
press: ctrl+z
Is This Answer Correct ? | 28 Yes | 3 No |
Answer / saroj das
kill -9 pid its forcefully stop kill the curent process
Is This Answer Correct ? | 22 Yes | 5 No |
Answer / rhino
Hi Sivakumar,
When we know the answer it would be good to post it , As
some of them might not able to find the answers and this
site would help them to get their issues addressed. Here is
how this goes
stop <pid> -- is the command to stop , Below example
explains this better
Ex Prog. to print 10000 numbers
#!/bin/sh
x=1
while [ $x -le 10000 ]
do
echo "No is. $x"
x=`expr $x + 1`
done
If you wish to stop this , Login to the different a/c get
the pid of the prog running as this will take some time to
execute you find sufficient time to do this
Login to other session on the same directory -- give ps -a
and check the prog. running stop it using below
ps -a ---> is the command used to check all the processes
running
stop 17872 (17872 is the pid of the program -- This will
stop the prog. as below
o/p :
No is. 8128
No is. 8129
[1] + Stopped (SIGSTOP) ./prnNo1
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / rhino -- rhino_sh@rediffmail.c
Would be worth to add how to resume forgot to place this
give the below
bg <pid> Ex : bg 17872
sample o/p :
No is. 9999
No is. 10000
^C
[1] + Done ./prnNo1
Is This Answer Correct ? | 3 Yes | 3 No |
Answer / c sivakumar. kumarsiva46@yaho
First of all i like to appreciate all the three Answerers
for theire initivative to have answered the question.
However the answers are not complete. In this first two
cases the command does not stop the process but kills it,
which means to restart the process we have to re-execute
the script. In the 3rd case the command stops only that
process which is activelly running in our terminal this
command can not be used to stop a process which is running
elsewhere. I know the answer to above question. But i
would like you guys to research over this and find out.
Please contact me for further queries.
Is This Answer Correct ? | 3 Yes | 5 No |
Explain ‘system calls’ with respect to unix commands?
what is the command to get help on a UNIX terminal?
What is the behavioural difference between cmp and diff commands?
Explain ‘library functions’ with respect to unix commands?
How can i know my Filesystem and its current usage in my prod UNIX system?
How to know a process is a zombie or orphan process?
Explain the read, write, and execute permissions on a UNIX directory.
How to get a particular string as your prompt ? Give syntax of that command?
How to setup Disk space as well as memory in solaris10?
What is mtime in find command?
what is the use of "fg" command ?
What are the unix commands?