How to find the PID of a Virtual Machine and then Kill It

Sometimes a Virtual Machine is hung in a funky state. To find the PID run:
grep -ir vmx /proc/vmware*

Find the PID, then run:

kill -9 PID#

Updated for VI3:

ps -ef | grep virtualmachinename
kill -9 PID#

- Jason Langone

Posted on Jul 11, 05:23 PM by Jason Langone

Commenting is closed for this article.

Commenting is closed for this article.