how to list running processes in linux
ps -ef
OR
ps -ef | grep <process-to-filter>
e.g
ps-ef | grep node
how to list running processes in linux
ps -ef
OR
ps -ef | grep <process-to-filter>
e.g
ps-ef | grep node
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us