Dec 7, 2006 #1 dbadmin Programmer Joined Jan 3, 2003 Messages 147 Location 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 Joined Dec 13, 2001 Messages 34 Location SG Hi, SAM will give you the information. SAM -> Performance Monitors -> System Properties. cheers, Upvote 0 Downvote
Dec 22, 2006 #3 pete91z Technical User Joined Oct 18, 2002 Messages 146 Location 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 Joined Mar 3, 2003 Messages 326 Location 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
Jan 26, 2007 Thread starter #5 dbadmin Programmer Joined Jan 3, 2003 Messages 147 Location US Thank you Upvote 0 Downvote