How can I list all the processes that are running on my server?

To show all the processes, you would use the ps command thusly:



ps auxww



If you only want to look for certain processes, you can pipe the output to grep like this:



ps auxww | grep <string>

Your rating: None