The following tutorial will show you how to kill programs/processes in OS X.
Use the following information very carefully. Killing processes in OS X can cause system instability and full scale OS crashes. With that said, this tutorial will show you how to ‘quit’ a program or process when it’s not listed in the dock, “Force Quit” menu etc.
- Typically when you’re looking to force something to quit, it’s because the program or process is eating up a ton of CPU. To identify the program/process, open an OS X terminal by going into your Applications -> Utilities and selecting Terminal. Once a terminal has opened, you can get a list of the running programs by entering the command top.
- To quit the top program simply hit the q key on your keyboard. As seen above, the default “sorting” for the top command is by PID (Process ID). Since this doesn’t always help identify which program is hogging your CPU, run top with the following string: top -o cpu
That will launch top and sort the processes by which ones are using the most CPU. In the example below you’ll see that top itself is actually using the most CPU.
- Again, hit the letter q to quit top. If you’ve identified the program you want to end, make note of it’s PID. In the screenshot below I’m using MozyBackup as my example, and it has a PID of 1488
- To quit MozyBackup, enter the command kill -9 1488. Broken down, that’s kill (the command to ‘kill’ a program) -9 (the “non-catchable, non-ignorable kill” – basically it means kill this program no matter what) and 1488 (the PID that you want killed).
- As you’ll see in the above screenshot, I was unable to kill the PID 1488. That’s because the program in question wasn’t owned (being run) by me – rather, it was being run by the root user. To get around this, and use this command with care, enter sudo kill -9 1488. You’ll be asked for your password, and after entering it, the process 1488 will be killed.
- For detailed information on the top and kill programs, enter man top or man kill from the terminal to view the manual pages for each program.





Pingback: Kill command on OS X at Rage on Omnipotent