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

VLC doesnt quit. How do I force quit the application?

7

2 Answers

You can use based on name pkill

pkill vlc

If that doesn't work, try:

pkill -9 vlc
5

Run this command to find out the PID it is using

ps aux | grep vlc

then run

sudo kill -9 <PID NUMBER>
4

You Might Also Like