Horje
check all running processes linux Code Example
show all processes linux
ps -aux | less
check running process in linux
ps -aux 
# (print all processes owned by a user named "x")
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




Shell

Related
using both ca cert and certificate between server and client Code Example using both ca cert and certificate between server and client Code Example
how to exit git rebase Code Example how to exit git rebase Code Example
tableplus Code Example tableplus Code Example
mount is not a block device Code Example mount is not a block device Code Example
vim cut paste Code Example vim cut paste Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9