<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: memory usage in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/3482917#M213628</link>
    <description>Jorge,&lt;BR /&gt;from a previous thread:&lt;BR /&gt;vmstat -n 1 10&lt;BR /&gt;top (RES is resident size in Kb)&lt;BR /&gt;&lt;BR /&gt;But glance seems to be the real solution&lt;BR /&gt;&lt;BR /&gt;Regards</description>
    <pubDate>Thu, 10 Feb 2005 08:35:36 GMT</pubDate>
    <dc:creator>Peter Godron</dc:creator>
    <dc:date>2005-02-10T08:35:36Z</dc:date>
    <item>
      <title>memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/3482914#M213625</link>
      <description>Hi,&lt;BR /&gt;In HP-UX 11i, Exists some commando to review the memory occupied by users, system and bufer breaks? &lt;BR /&gt;Not this available glance. &lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;&lt;BR /&gt;Jorge Prado T.</description>
      <pubDate>Thu, 10 Feb 2005 08:21:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/3482914#M213625</guid>
      <dc:creator>Jorge Prado T._1</dc:creator>
      <dc:date>2005-02-10T08:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/3482915#M213626</link>
      <description>I don't know what a buffer break is.&lt;BR /&gt;&lt;BR /&gt;If you identify the process and use gpm, the graphical version of glance, you can get lots of information on the process.&lt;BR /&gt;&lt;BR /&gt;Are you using glance(text) or gpm?&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 10 Feb 2005 08:34:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/3482915#M213626</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-02-10T08:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/3482916#M213627</link>
      <description>This will show you the top 30 memory processess:&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -e -o 'vsz pid ruser args' |sort -nr|head -30&lt;BR /&gt;&lt;BR /&gt;This one shows you by user:&lt;BR /&gt;&lt;BR /&gt;# cat usermem&lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;# usermem - display memory claimed by a user&lt;BR /&gt;#&lt;BR /&gt;if [ $# -lt 1 -o \( $# -gt 1 -a $# -lt 4 \) ]&lt;BR /&gt;then&lt;BR /&gt;  echo "Usage:"&lt;BR /&gt;  echo "usermem \"userid\""&lt;BR /&gt;  echo "Example:"&lt;BR /&gt;  echo "usermem gwild"&lt;BR /&gt;  exit 1&lt;BR /&gt;fi&lt;BR /&gt;echo " "&lt;BR /&gt;&lt;BR /&gt;USER=$1&lt;BR /&gt;t=0&lt;BR /&gt;for j in `UNIX95= ps -e -o vsz=Kbytes -o ruser -o pid,args=Command-Line | sort -rnk1 | grep -v Kbytes | grep $USER | awk '{print $1}'`&lt;BR /&gt;do&lt;BR /&gt;t=`expr $t + $j`&lt;BR /&gt;done&lt;BR /&gt;echo "\nMemory claimed by $USER: $t Kbytes.\n"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Thu, 10 Feb 2005 08:35:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/3482916#M213627</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2005-02-10T08:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/3482917#M213628</link>
      <description>Jorge,&lt;BR /&gt;from a previous thread:&lt;BR /&gt;vmstat -n 1 10&lt;BR /&gt;top (RES is resident size in Kb)&lt;BR /&gt;&lt;BR /&gt;But glance seems to be the real solution&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Thu, 10 Feb 2005 08:35:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/3482917#M213628</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2005-02-10T08:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/3482918#M213629</link>
      <description>hi Jorge &lt;BR /&gt;&lt;BR /&gt;The commonly used memory diagnostics tools are :&lt;BR /&gt;&lt;BR /&gt;size&lt;BR /&gt;vmstat &lt;BR /&gt;ipcs &lt;BR /&gt;glance&lt;BR /&gt;swapinfo&lt;BR /&gt;perfview&lt;BR /&gt;and sar ....&lt;BR /&gt;&lt;BR /&gt;you can check manpages for theis specific uses.....&lt;BR /&gt;&lt;BR /&gt;regards .&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Feb 2005 08:37:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/3482918#M213629</guid>
      <dc:creator>Henk Geurts</dc:creator>
      <dc:date>2005-02-10T08:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4808261#M392598</link>
      <description>&lt;P&gt;HPUX Kmem is a good tool for this purpose .&lt;/P&gt;&lt;P&gt;It was available on the old ITRC website . .&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2011 08:23:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4808261#M392598</guid>
      <dc:creator>kgill</dc:creator>
      <dc:date>2011-06-30T08:23:27Z</dc:date>
    </item>
  </channel>
</rss>

