How to Force Quit a not responding application?
Run this command to find out the PID it is using
ps aux | grep vlc
then run
sudo kill -9 PID
You can use based on name pkill
pkill vlc
If that doesn't work, try:
pkill -9 vlc
Run this command to find out the PID it is using
ps aux | grep vlc
then run
sudo kill -9 PID
You can use based on name pkill
pkill vlc
If that doesn't work, try:
pkill -9 vlc