I'd like to view information for processes running in OS X. Running ps in the terminal just lists the open Terminal windows. How can I see all processes that are running?

Say I'm running a web browser, terminal and text editor. I'd like to see information for the text editor and web browser.

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

You can just use top It will display everything running on your OSX

link|improve this answer
feedback

Try ps -ef. man ps will give you all the options.

link|improve this answer
feedback

Try the top command. It's an interactive command that will display the running processes.

You may also use the Apple's "Activity Monitor" application (located in /Applications/Utilities/).

It provides an actually quite nice GUI. You can see all the running processes, filter them by users, get extended informations about them (CPU, memory, network, etc), monitor them, etc...

Probably your best choice, unless you want to stick with the terminal (in such a case, read the top or ps manual, as those commands have a bunch of options).

link|improve this answer
feedback

Running ps -e does the trick. Found the answer here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.