Dec 7, 2006 #1 dbadmin Programmer Jan 3, 2003 147 US Hi, How could you find the used memory and free memory on HP-UX? Is it vmstat? or top. The values shown by these commands are different. I am confused. Thanks, dbadmin
Hi, How could you find the used memory and free memory on HP-UX? Is it vmstat? or top. The values shown by these commands are different. I am confused. Thanks, dbadmin
Dec 11, 2006 1 #2 mok123 Technical User Dec 13, 2001 34 SG Hi, SAM will give you the information. SAM -> Performance Monitors -> System Properties. cheers, Upvote 0 Downvote
Dec 22, 2006 #3 pete91z Technical User Oct 18, 2002 146 GB If i remember rightly vmstat shows you the memory in 4K pages so some small arithmetic is required Upvote 0 Downvote
Jan 10, 2007 1 #4 kozlow MIS Mar 3, 2003 326 US dmesg | awk '/Physical:/ && /Kbytes/ {print $2}' or getconf KERNEL_BITS 64 echo "phys_mem_pages/D" | adb64 /stand/vmunix /dev/mem Upvote 0 Downvote
dmesg | awk '/Physical:/ && /Kbytes/ {print $2}' or getconf KERNEL_BITS 64 echo "phys_mem_pages/D" | adb64 /stand/vmunix /dev/mem