what is the difference between KILL and KILL -9?
Answers were Sorted based on User's Feedback
Answer / daniel
The simple kill command will give the signal SIGTERM, while kill -9 will give the signal SIGKILL.
| Is This Answer Correct ? | 44 Yes | 2 No |
Answer / birendra
Kill command will kill the proecess without specifying the
force whereas when we need to apply the force or priority
to kill any process we use kill -9.
| Is This Answer Correct ? | 35 Yes | 4 No |
Answer / ravi k srivastava
Kill allows the child processes to be killed before parent
process is killed.
Kill -9 forcefully kills the process without giving time to
child processes to be killed. In IPC architecture, its not
good idea to kill forcefully using "-9" option.
| Is This Answer Correct ? | 24 Yes | 1 No |
Answer / viraj
The simple kill command will give the signal SIGTERM, while
kill -9 will give the signal SIGKILL.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / kiruthiga.s
KILL --> its a graceful terminating of proocess
kill-9--> terminates the process force fully
| Is This Answer Correct ? | 4 Yes | 0 No |
what is the default permission for /etc/shadow file in UNIX
Write a command that will find all text files in a directory such that it does not contain the word "amazing" in any form (that is, it must include the words amazing, amazing, or amazing)?
What does the metacharacter mean?
How do you find out all processes that are currently running in UNIX OS?
What do chmod, chown, chgrp commands do?
What is the command to check ports active in UNIX?
what is the meaning of this command rm -rf / what will it do ?
what is ls -ltd?
How we will execute previous command in vi editor?
What is the nmap command?
Is there any method to erase all files in the current directory, along with its all sub-directories, by using only one command?
What is updatedb?