macOS tips on killing hanging processes/programs (applications)
ps -ax | grep <application_name>
E.g.
ps -ax | grep virtualbox
kill <pid>
OR
kill -9 <pid>
E.g.
kill -9 3201
NOTE: the -9 is to indicate the signal is SIGKILL (return code 9)
macOS tips on killing hanging processes/programs (applications)
ps -ax | grep <application_name>
E.g.
ps -ax | grep virtualbox
kill <pid>
OR
kill -9 <pid>
E.g.
kill -9 3201
NOTE: the -9 is to indicate the signal is SIGKILL (return code 9)