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
Advertisement
Tutorials
+41k Golang : Convert string to array/slice
+9.6k Golang : Get escape characters \u form from unicode characters
+5.4k Linux : Disable and enable IPv4 forwarding
+8k PHP : How to parse ElasticSearch JSON ?
+13.6k Golang : Fix cannot use buffer (type bytes.Buffer) as type io.Writer(Write method has pointer receiver) error
+5k Golang : Qt update UI elements with core.QCoreApplication_ProcessEvents
+26.2k Golang : Convert file content into array of bytes
+11.2k Golang : Display a text file line by line with line number example
+12.1k Golang : Get absolute path to binary for os.Exec function with exec.LookPath
+7.8k Golang : Auto-generate reply email with text/template package
+8.8k Golang : How to check if a string with spaces in between is numeric?
+6.4k Android Studio : Hello World example