How to Force Quit a not responding application? [duplicate]

Solution 1:

Run this command to find out the PID it is using

ps aux | grep vlc

then run

sudo kill -9 <PID NUMBER>

Solution 2:

You can use based on name pkill

pkill vlc

If that doesn't work, try:

pkill -9 vlc