|
|
Listing all the programs currently running on the system - Linux
|
Views : 382
|
|
Tagged in : Linux
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
Listing all the programs currently running on the system
To list all the processes currently running:
ps -axlf
(you may omit the 'a' option if you want to list only the processes owned by you, and -l if you want less information)
The most important columns are 'time' and 'RSS' which show the time used by process since it started and the amount of real memory it takes.
If you want to list just some programs, for example ``matlab'', type
ps -ax | grep matlab
Another useful utility to list running processes is 'top':
top
The info is refreshed every second or so. Type 'M' to sort by memory usage, and 'Q' to quit.
|
|
By - Sanju, On - 2009-11-20 |
|
|
|