Sprawdź proces uruchamiania w Linux
ps -aux
# (print all processes owned by a user named "x")
Vishal
ps -aux
# (print all processes owned by a user named "x")
# 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