To get a simple list:
ps aux
To filter for a process by name, pipe it to grep. In the example below we will find all the Apache processes:
ps aux | grep apache
To get a simple list:
ps aux
To filter for a process by name, pipe it to grep. In the example below we will find all the Apache processes:
ps aux | grep apache