Ways to force quit Mac application



Ever since I switched to Mac OS X from Windows, I haven't look back. Great operating system. Love it. However, Mac OS X is known to have its own set of problems and occasionally it will let you wait and just wait... wondering what is going on at the background. Don't worry, at least it won't give you the blue screen of death... but rather the continuos spinning beach ball or spinning wait "forever" cursor, that you still get to move your mouse cursor around and launch different application.

mac os x spinning wait cursor or beach ball

An application that is not responding usually takes up resources such as CPU, memory, sound channel that should be freed up for other applications. Here are couple of ways that you can force quit an application that is not responding.

1. Use Activity Monitor to force quit application

Click on "Launch Pad" and click on "Other", select Activity Monitor. Select the application that you want to force quit. In the following example, we try to force quit DropBox application by selecting the application and click on the X button on the top-left.

force quit with activity monitor

2. Open up terminal, kill application process

For those who are more familiar with Terminal, open up terminal and type in the command ps -ef | grep -i dropbox. Basically what this command does is to list out all the running processes and filter out those with the string "dropbox" . The -i option for grep command means ignore upper or lower case.

ps -ef pipe grep dash i

You can the proceed to kill the application by using the kill command. For example, kill 501 will force quit the Dropbox application.

NOTE : Use kill command with care otherwise you will kill off non-related processes that happen to have the name of the application you search for.

3. Force quit application with keyboard keys combination

Finally, for those of you that unable to launch terminal or activity monitor or simply want a fast way to force quit an application.

If your application is not responding, do the following:

Press and hold the following keys: Command + Option + Esc. A dialog box will appear and you can select which application you want to terminate/force quit.

Force quit application dialog box

Hope this helps!

Reference :

https://en.wikipedia.org/wiki/Spinning_pinwheel



By AdamNg

IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.


Advertisement

Advertisement