I have found an example of how to kill a normal process, but it wont kill a system process.
I don’t want to kill a critical process, just a system process.
How can I do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It depends on what system are you running.
In Windows, the documentation provided is ambiguous and can be different from a version to another.
In *nix family (Mac OS X, Linux,…), you have to manipulate kernel-level threads and close them, by sending a SIGKILL signal. However, I don’t know if, even in root user, you can send them by your will.