Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!
Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.
Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!
[Solved] Shell – (killall) How to kill multiple tasks with the same name
(@hans)
Famed Member Admin
Joined: 12 years ago
Posts: 2859
Topic starter
October 5, 2013 5:36 AM
Killing processes with the same name in a shell can be done relatively easy under Linux:
killall name
Which will kill all processes with the name “name”.
This will only kill processed you own (ie. owned by the user you used to login).
To kill ALL processes, even the ones you do no own:
sudo killal -9 name
Where you login as super user (sudo), for the execute of the statement killall.