Ubuntu – How to force any program to close

command linefirefoxkill

Sometimes programs tell me I can't start it because there is already another instance of it running. Best example would be Firefox and Chromium, but this problem accounts for many applications.

I cannot find the applications PID in the running processes.

How to kill all running instances of a program, e.g. Firefox?

I tried:

ps ax | grep firefox

But everything I can find is:

8193 ?        Rl     0:08 /usr/lib/firefox/firefox

I tried:

kill 8193

But I get:

Process not found

Actually, even when Firefox is running accurately, I cannot find its instances in ps.

What did I miss?

Best Answer

The easiest solution for a program that is not responding would be:

killall firefox

and if this doesn't work

killall -9 firefox

and if this still doesn't work, reboot, nothing else will.

For other killall options, see this article on Wikipedia: Link

Related Question