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.
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.
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.
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.
Hope this helps!
Reference :
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
Something interesting
- Currencies of Life : Revenue is Vanity, Profit is Sanity, Free Cash Flow is King and Compouding Cash is Queen
Advertisement
Tutorials
+10.7k Golang : Simple image viewer with Go-GTK
+13.1k Golang : Count number of runes in string
+6.9k Ubuntu : connect() to unix:/var/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream
+6.6k Mac/Linux/Windows : Get CPU information from command line
+17.4k Convert JSON to CSV in Golang
+7.8k Golang : Multiplexer with net/http and map
+23.3k Find and replace a character in a string in Go
+28.1k Golang : Change a file last modified date and time
+12.3k Golang : Exit, terminating or aborting a program
+10.7k Golang : Generate random elements without repetition or duplicate
+8k Golang : Number guessing game with user input verification example