From da478ee4ab323a812cbb572cf1502f895669a3af Mon Sep 17 00:00:00 2001 From: tianci Date: Sat, 12 Oct 2024 21:11:29 +0800 Subject: [PATCH] Change the effect of keyboard icons to lowercase --- docs/books/admin_guide/08-process.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/books/admin_guide/08-process.md b/docs/books/admin_guide/08-process.md index 227cef4188..5588996368 100644 --- a/docs/books/admin_guide/08-process.md +++ b/docs/books/admin_guide/08-process.md @@ -207,10 +207,10 @@ kill -9 1664 | Code | Signal | Description | |------|-----------|--------------------------------------------------------| | `2` | *SIGINT* | Immediate termination of the process | -| `9` | *SIGKILL* | Interrupt the process (++control+d++) | +| `9` | *SIGKILL* | Interrupt the process (++control+"d"++) | | `15` | *SIGTERM* | Clean termination of the process | -| `18` | *SIGCONT* | Resume the process | -| `19` | *SIGSTOP* | Suspend the process | +| `18` | *SIGCONT* | Resume the process. Processes that use the SIGSTOP signal can use it to continue running | +| `19` | *SIGSTOP* | Suspend the process (Stop process). The effect of this signal is equivalent to ++ctrl+"z"++ | Signals are the means of communication between processes. The `kill` command sends a signal to a process. @@ -242,9 +242,9 @@ nohup myprogram.sh 0