mirror of
https://github.com/you-dont-need/You-Dont-Need-GUI.git
synced 2025-08-13 16:53:59 +02:00
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:
@@ -309,7 +309,7 @@ $ bc
|
|||||||
**STOP CTRL + ALT + DELETE and choose the program to kill** :-1:
|
**STOP CTRL + ALT + DELETE and choose the program to kill** :-1:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ killall program_name
|
$ killall -9 program_name
|
||||||
```
|
```
|
||||||
|
|
||||||
## check server response
|
## check server response
|
||||||
|
Reference in New Issue
Block a user