Answers for "how to check list of running process in linux"

3

how to list running processes in linux

ps -ef 

OR

ps -ef | grep <process-to-filter> 
e.g 
ps-ef | grep node
Posted by: Guest on April-18-2021
1

check all running processes linux

# memory usage (in percentage) of all the process running with pid
ps -o pid,user,%mem,command ax | sort -b -k3 -r
# all running process
ps aux
# Memory usage of a specific pid(917 is an example here process)
sudo pmap 917 | tail -n 1
Posted by: Guest on March-12-2022

Code answers related to "how to check list of running process in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language