View Single Post
free's Avatar
Posts: 739 | Thanked: 159 times | Joined on Sep 2007 @ Germany - Munich
#5
You need /usr/bin/memstat.

Unlike ps, memstat lists all the shared objects (shared libraries and executables) that are in memory, and which processes are using those shared objects.

Getting the complete memory usage of a process (included shared memory used also by other process):

PHP Code:
#!/bin/sh
pids=`pidof $1`
for 
i in $pids
do
        
memstat -egrep "[^0-9]$i[^k]
done awk 'BEGIN{s=0}{s+=$1}END{print s"k"}' 
Nokia-N800-50-2:/home/user# ./mmem.sh hildon-input-method
27280k
Nokia-N800-50-2:/home/user# ./mmem.sh osso-xterm
4996k

Last edited by free; 2008-01-30 at 19:37.