kismetwireless / kismet

Github mirror of official Kismet repository
Other
1.57k stars 306 forks source link

How to stop Kismet --daemonize ? [Solved] #412

Open qkum opened 2 years ago

qkum commented 2 years ago

hello lovely opensource people.

I have several times over the last few years tried to find out how to stop kismet when using --daemonize?

While writing this I tried one last thing and it worked....

Maybe someone else wants to save hours of their life, so.

Here is the solution:

'pidof' Returns the main process PID/ID: pidof kismet

We kill it with: kill -14 PID_NUMBER

Vola! - Something that should be in the --help menu brought to you by the PePe-Programmer.

inactivist commented 3 months ago

Handy one-liner using command substitution

kill -14 $(pidof kismet)