Command to check all the running processes on server

kumkumsharma

Administrator
Staff member
You can check the running processes from ps command (Processes status), as a system administrator this utility will help you to monitor all the running processes on server. This will get this information from virtual files /proc filesystem.

You have to run below command

Code:
ps –aux
Here aux will list all the running processes on and off the terminals
 
Top