diff --git a/docs/en/docs/Administration/process-management.md b/docs/en/docs/Administration/process-management.md index 4032595e9628a73264e53976e363328e2a4cb716..4e49fd5648787550374058cabb51ca214a4b3f17 100644 --- a/docs/en/docs/Administration/process-management.md +++ b/docs/en/docs/Administration/process-management.md @@ -114,7 +114,7 @@ Both the top and the ps commands can display a list of currently running process ![](./figures/example-command-output.png "example-command-output") ### kill Command -The **kill** command is used to terminate a process regardless of whether the process is running in foreground or background. It differs from the combo key **Ctrl+c**, which can terminate only foreground processes. The kill command is used to terminate a process regardless of whether the process is running in foreground or background. The reason for terminating a background process can be heavy use of CPU resources or deadlock. +The **kill** command is used to terminate a process regardless of whether the process is running in foreground or background. It differs from the combo key **Ctrl+C**, which can terminate only foreground processes. The kill command is used to terminate a process regardless of whether the process is running in foreground or background. The reason for terminating a background process can be heavy use of CPU resources or deadlock. The kill command sends a signal to terminate running processes. By default, the TERM signal is used. The TERM signal terminates all processes incapable of capturing the TERM signal. To terminate a process capable of capturing the TERM signal, use the KILL signal \(signal ID: 9\) instead.