Answers for "see process running on linux"

8

check running process in linux

ps -aux 
# (print all processes owned by a user named "x")
Posted by: Guest on May-02-2020
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 "see process running on linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language