Hi,
when id run command
ps aux |awk '{ sum += $6 } END { print sum/1024/1024 }'
the out put is way higher that total physical memory assigned to server.
the RSS out put on the 6 th column of ps aux output represent the resident memory which is amount of physical memory used by process. ??
how could that sum be larger that the total ram assigned to the server
Thanks