Skip to content

Commit b6bc0df

Browse files
08-process.md (#2465)
Grammar check
1 parent 10076d3 commit b6bc0df

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/books/admin_guide/08-process.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -207,10 +207,10 @@ kill -9 1664
207207
| Code | Signal | Description |
208208
|------|-----------|--------------------------------------------------------|
209209
| `2` | *SIGINT* | Immediate termination of the process |
210-
| `9` | *SIGKILL* | Interrupt the process (++control+"d"++) |
210+
| `9` | *SIGKILL* | Interrupts the process (++control+"d"++) |
211211
| `15` | *SIGTERM* | Clean termination of the process |
212-
| `18` | *SIGCONT* | Resume the process. Processes that use the SIGSTOP signal can use it to continue running |
213-
| `19` | *SIGSTOP* | Suspend the process (Stop process). The effect of this signal is equivalent to ++ctrl+"z"++ |
212+
| `18` | *SIGCONT* | Resumes the process. Processes that use the SIGSTOP signal can use it to continue running |
213+
| `19` | *SIGSTOP* | Suspends the process (Stops process). The effect of this signal is equivalent to ++ctrl+"z"++ |
214214

215215
Signals are the means of communication between processes. The `kill` command sends a signal to a process.
216216

@@ -244,7 +244,7 @@ nohup myprogram.sh 0</dev/null &
244244

245245
### [Ctrl] + [z]
246246

247-
By pressing the ++control+"z"++ keys simultaneously, the synchronous process is temporarily suspended. Access to the prompt is restored after displaying the number of the process that has just been suspended.
247+
The synchronous process is temporarily suspended by pressing the ++control+"z"++ keys simultaneously. Access to the prompt is restored after displaying the number of the process that has just been suspended.
248248

249249
### `&` instruction
250250

@@ -358,7 +358,7 @@ renice -n 15 -p 1664
358358
| `-p` | `PID` of the process. |
359359
| `-u` | `UID` of the process owner. |
360360

361-
The `renice` command acts on processes already running. It is therefore possible to change the priority of a specific process and several processes belonging to a user or a group.
361+
The `renice` command acts on existing processes. Therefore, it is possible to change the priority of a specific process and several processes belonging to a user or a group.
362362

363363
!!! Tip
364364

0 commit comments

Comments
 (0)