Linux Show Running Process

[Solved] Linux Show Running Process | Shell - Code Explorer | yomemimo.com
Question : check running process in linux

Answered by : vishal-4vfs6l0xobcm

ps -aux
# (print all processes owned by a user named "x")

Source : | Last Update : Sat, 09 May 20

Question : check all running processes linux

Answered by : determined-dove-tbfphldwiqgh

# 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

Source : | Last Update : Sat, 19 Mar 22

Answers related to linux show running process

Code Explorer Popular Question For Shell