Site TIPS PAGE🔎 SEARCH  Ξ INDEX  MAIN MENU  UP ONE LEVEL
 OJB's Web Site. Version 2.1. Mac Tip.You are here: tip tips mac owen2 
Tip

Up to OJB's Mac Tips List

Viewing Processes in Terminal

These commands can be used to check whether a particular process (a process is just a program or app... sort of) is running or not, and to find out if any process is using more memory or CPU time than expected. Most importantly, they show the process ID which can be used to manipulate the process with other commands.

It's usually easy to tell what programs are running on your Mac. Just look in the dock and you will see their icons. If you leave icons for programs there all the time you can tell the currently running programs because they have a small black dot next to them. But your machine is doing a lot more than that! Under the surface there are dozens of other programs running - both Mac background programs and Unix utilities.

To see a list of these use the "ps" command. You won't see much until you add the "a" and "x" options for this command, giving "ps -ax". These options show processes (programs) which belong to other users and background processes. Now you can see how busy your machine really is!

To make the file names a bit easier to understand use the "c" option. This shows the program name instead of the complete path. The command is now "ps -axc".

Your machine is even busier than you think. Try adding the "M" option and see the threads that each process uses. Threads are like sub-tasks the main program is running. The command is now "ps -axcM". Note the "M" is upper case. If you want to know how many threads are running try this: "ps -axcM | wc -l". This pipes the output of the process list to the word count command using the line count option. BTW, when I did this my machine was running over 200 threads!

Update 1: The number I mentioned here related to earlier versions of Mac OS X and is a bit outdated. Looking at my modern Mac running Yosemite I now see almost 2,000 threads!

Update 2: Things continue to get better (or worse). On my macOS 13 MacBook Pro there are now over 3,200 threads!



I usually write a blog post about once a week. The latest post can be viewed here: Stop the Tribalism: They really need to stop the tribalism. (posted 2024-06-26 at 19:56:52). I do podcasts too!. You can listen to my latest podcast, here: OJB's Podcast 2024-04-30 The Fall of Rome: I'm afraid that we really might be seeing the demise of the greatest era in history..
 Site ©2024 by OJBWeb ServerWhy Macs are BestMade & Served on Mac 
Site Features: Blog RSS Feeds Podcasts Feedback Log07 Jun 2024. Hits: 104,549,934
Description: Mac TipKeywords: Macintosh,Computers,Fixing Problems,TipsLoad Timer: 11ms