which command is used to stop a running process in unix?

Answers were Sorted based on User's Feedback



which command is used to stop a running process in unix?..

Answer / manikandant

If you want stop the process, use the below command.

press: ctrl+z

Is This Answer Correct ?    28 Yes 3 No

which command is used to stop a running process in unix?..

Answer / saroj das

kill -9 pid its forcefully stop kill the curent process

Is This Answer Correct ?    22 Yes 5 No

which command is used to stop a running process in unix?..

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

which command is used to stop a running process in unix?..

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

which command is used to stop a running process in unix?..

Answer / rao

Kill -9 (PID)

Is This Answer Correct ?    0 Yes 0 No

which command is used to stop a running process in unix?..

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

which command is used to stop a running process in unix?..

Answer / hitz

Kill -20 pid

Is This Answer Correct ?    0 Yes 4 No

which command is used to stop a running process in unix?..

Answer / mohan

kill 9 pid

Is This Answer Correct ?    9 Yes 14 No

Post New Answer

More Unix Commands Interview Questions

Can you write a command to erase all files in the current directory including all its sub-directories?

1 Answers  


which script will invoke first ,when /etc/init.d starts

1 Answers  


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include<stdlib.h> # include <stdio.h> int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

0 Answers  


What is the syntax of grep command and what is its use?

6 Answers  


what is the command to find out the difference between files and folders?

6 Answers  






A file has 1000 lines and i want to display only 1st line how to do it? pls ..tel me

7 Answers   CTS,


Write a command that will output the sorted contents of a file named in.txt and place the output in another file named out.txt, while at the same time excluding duplicate entries.

1 Answers  


their is a file1,file2 and i want to append file1 data to file2?

9 Answers   IBM,


How do I find previous commands in unix?

0 Answers  


What does grep v do?

0 Answers  


Name the various commands that are used for the user information in unix.

0 Answers  


describe the escaping sequence characteres in unix

1 Answers  


Categories