Fix " force quit a program" to send SIGKILL

Running `killall program_name` sends a SIGTERM signal, which a program is free to ignore:
> The sig argument is the value specified by the -s option, - signal_number option, or the - signal_name option, or by SIGTERM, if none of these options is specified.
https://pubs.opengroup.org/onlinepubs/9699919799/utilities/kill.html

To send a SIGKILL signal, you need to use `killall -9` or `killall -KILL`, which cannot be ignored.
This commit is contained in:
Mason Malone 2021-04-08 21:21:52 -07:00 committed by GitHub
parent 8f87e8f25b
commit 9b87ef87df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -309,7 +309,7 @@ $ bc
**STOP CTRL + ALT + DELETE and choose the program to kill** :-1:
```shell
$ killall program_name
$ killall -9 program_name
```
## check server response