VLC doesnt quit. How do I force quit the application?
72 Answers
You can use based on name pkill
pkill vlcIf that doesn't work, try:
pkill -9 vlc 5 Run this command to find out the PID it is using
ps aux | grep vlcthen run
sudo kill -9 <PID NUMBER> 4