Pkill User Procs

[problem]

Want to kill all processes, for a specific user.

[/problem]

[solution]

This command will send a -KILL signal, equivalent to minus 9:


pkill -KILL -U username

[/solution]

[example]

So to kill all processes owned by username marcus:


pkill -KILL -U marcus

If you issue kill -l – that is kill minus L, it will show all the symbol to numeric codes. Although you can just use numeric with pkill:


pkill -9 -U marcus

[/example]

[reference]

[tags]pkill, proc kill, Unix Coding School[/tags]

[/reference]

If you have found my website useful, please consider buying me a coffee below 😉

Leave a Reply

Your email address will not be published. Required fields are marked *