Answers for "linux terminal show all running process"

11

show all processes linux

ps -aux | less
Posted by: Guest on March-11-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 "linux terminal show all running process"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language