What is the difference between kill and kill -9 commands?
Answers were Sorted based on User's Feedback
Answer / bharath
kill <pid>
allows to kill the normal process.
where as
kill -9 <pid>
to kill normal process and also background process.
| Is This Answer Correct ? | 20 Yes | 0 No |
Answer / majeed090
kill <pid>
to kill all process but not kill the some child process
called Zombie process.
kill -9 <pid>
by using this it kills all process forcefully.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / guest
kill used for terminate the process but kill -9 used to
kill process forcefully
| Is This Answer Correct ? | 3 Yes | 1 No |
In which File is Static IP address given so that it becomes Permanent ?
Explain command grouping in linux?
how to restart apache server with out shatdown?
How do I run a .sh file in linux?
To move /home/ben/memos dir in /home/bob/memos, what is the result by mv /home/ben/memos /home/bob
Information technology is widely used in
What are the basic commands for user management?
What is the status code 403,404 represented in apache server?
How would you monitor real-time system performance in Linux?
What are the main components of a Linux system?
What is command grouping?
Explain getopts command of linux?