Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

process physicall memory utilization 2

Status
Not open for further replies.

rn4it

MIS
Nov 7, 2002
671
CA
I'm looking for a cmd that would let me know which process is using up all the physical memory on our Solaris 8 blade server. Any help would be appreciated. thanks
 
Or ps -eo pid,vsz,comm | sort -n -k 2,2 | tail will often point you in the right direction.

Annihilannic.
 
prstat -s size
will display in memory usage order
prtstat -s -size -a
will break down futher, which users are taking what

Also ....
ps -e -o pid,ppid,vsz,rss,osz,pmem,args |sort –k 6
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top