<?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 Memory usage in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113315#M726657</link>
    <description>Hi!&lt;BR /&gt;I try to calculate the amount of the memory that is used by all processes in the system.&lt;BR /&gt;I try this:&lt;BR /&gt;# UNIX95=1 ps -e -o vsz | awk 'BEGIN {sum=0} {sum+=$1} END {printf("%d\n",sum)}'&lt;BR /&gt;&lt;BR /&gt;However ths command displays something unreasonable for me. The output is: 10794960 (~10GB!).&lt;BR /&gt;&lt;BR /&gt;And this:&lt;BR /&gt;#ipcs -mob | tail +3 | awk 'BEGIN {sum2=0} {sum2+=$NF} END {printf("%d\n",sum2/1024/1024)}'&lt;BR /&gt;adds to my calculation ~1GB&lt;BR /&gt;&lt;BR /&gt;The total memory usage in the system is ~11GB&lt;BR /&gt;&lt;BR /&gt;But the server has only 2 GB of RAM and 4 GB of swap:&lt;BR /&gt;#swapinfo -t&lt;BR /&gt;             Kb      Kb      Kb   PCT  START/      Kb&lt;BR /&gt;TYPE      AVAIL    USED    FREE  USED   LIMIT RESERVE  PRI  NAME&lt;BR /&gt;dev     4194304  585804 3608500   14%       0       -    1  /dev/vg00/lvol2&lt;BR /&gt;reserve       - 1876880 -1876880&lt;BR /&gt;memory  2085648  759992 1325656   36%&lt;BR /&gt;total   6279952 3222676 3057276   51%       -       0    -&lt;BR /&gt;&lt;BR /&gt;No swapping in the system (sar -w ...; vmstat ... display not swapouts)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;So, where am I wrong?</description>
    <pubDate>Fri, 07 Dec 2007 11:28:28 GMT</pubDate>
    <dc:creator>ViS_2</dc:creator>
    <dc:date>2007-12-07T11:28:28Z</dc:date>
    <item>
      <title>Memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113315#M726657</link>
      <description>Hi!&lt;BR /&gt;I try to calculate the amount of the memory that is used by all processes in the system.&lt;BR /&gt;I try this:&lt;BR /&gt;# UNIX95=1 ps -e -o vsz | awk 'BEGIN {sum=0} {sum+=$1} END {printf("%d\n",sum)}'&lt;BR /&gt;&lt;BR /&gt;However ths command displays something unreasonable for me. The output is: 10794960 (~10GB!).&lt;BR /&gt;&lt;BR /&gt;And this:&lt;BR /&gt;#ipcs -mob | tail +3 | awk 'BEGIN {sum2=0} {sum2+=$NF} END {printf("%d\n",sum2/1024/1024)}'&lt;BR /&gt;adds to my calculation ~1GB&lt;BR /&gt;&lt;BR /&gt;The total memory usage in the system is ~11GB&lt;BR /&gt;&lt;BR /&gt;But the server has only 2 GB of RAM and 4 GB of swap:&lt;BR /&gt;#swapinfo -t&lt;BR /&gt;             Kb      Kb      Kb   PCT  START/      Kb&lt;BR /&gt;TYPE      AVAIL    USED    FREE  USED   LIMIT RESERVE  PRI  NAME&lt;BR /&gt;dev     4194304  585804 3608500   14%       0       -    1  /dev/vg00/lvol2&lt;BR /&gt;reserve       - 1876880 -1876880&lt;BR /&gt;memory  2085648  759992 1325656   36%&lt;BR /&gt;total   6279952 3222676 3057276   51%       -       0    -&lt;BR /&gt;&lt;BR /&gt;No swapping in the system (sar -w ...; vmstat ... display not swapouts)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;So, where am I wrong?</description>
      <pubDate>Fri, 07 Dec 2007 11:28:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113315#M726657</guid>
      <dc:creator>ViS_2</dc:creator>
      <dc:date>2007-12-07T11:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113316#M726658</link>
      <description># uname -srm&lt;BR /&gt;HP-UX B.11.23 ia64</description>
      <pubDate>Fri, 07 Dec 2007 11:30:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113316#M726658</guid>
      <dc:creator>ViS_2</dc:creator>
      <dc:date>2007-12-07T11:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113317#M726659</link>
      <description>If you want to count memory consumption that's "sz" not "vsz" [Resident Set Size versus Virtual Size].&lt;BR /&gt;&lt;BR /&gt;And you don't need to add shared memory in again unless you want to add in only segments where the NATTCH is 0 [those wouldn't be in the ps output, anything which is attached will].&lt;BR /&gt;&lt;BR /&gt;It isn't going to be that unexpected to get a value higher than the total swap size from a VSZ summation -- first, not everything has to reserve swap. Anything backed by a normal file where the changes are shared across all attachers (even if the VA is private like Text) just uses the file in the case of paging, so no swap is needed or acquired. Second, the swap-backed shared values get a little finessed (to try to count the pages used across those attached), so on a running system that's easily a little off by the time you walk the whole process space.&lt;BR /&gt;&lt;BR /&gt;In your case, I'd bet on file-backed objects adding in your additional 4Gb of virtual address space.</description>
      <pubDate>Fri, 07 Dec 2007 12:28:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113317#M726659</guid>
      <dc:creator>Don Morris_1</dc:creator>
      <dc:date>2007-12-07T12:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113318#M726660</link>
      <description>2Don Morris&lt;BR /&gt;As I see in the "man ps" the sz is "The size in physical pages of the core image of the process, including text, data, and stack space.  Physical page size is defined by _SC_PAGE_SIZE in the header file &lt;UNISTD.H&gt; (see sysconf(2) and unistd(5))".&lt;BR /&gt;And vsz is "The size in kilobytes (1024 byte units) of the core image of the process. See column sz, above."&lt;BR /&gt;And no references about attachments to shared segments mentioned.&lt;BR /&gt;&lt;BR /&gt;Even more:&lt;BR /&gt;getconf _SC_PAGE_SIZE&lt;BR /&gt;from the shell dives to me "4096"&lt;BR /&gt;&lt;BR /&gt;For some processes (init for example) vsz/sz=4&lt;BR /&gt;But for some other processes (oracle) vsz/sz=14&lt;BR /&gt;And may be other ratios exists.&lt;BR /&gt;&lt;BR /&gt;I suspect the "chatr" can be be used to change the default page_size.&lt;BR /&gt;&lt;BR /&gt;So the question is open still:&lt;BR /&gt;How can I calculate the memory consumption for some process group or for all processes?&lt;/UNISTD.H&gt;</description>
      <pubDate>Fri, 07 Dec 2007 13:28:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113318#M726660</guid>
      <dc:creator>ViS_2</dc:creator>
      <dc:date>2007-12-07T13:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113319#M726661</link>
      <description>&lt;!--!*#--&gt;Here's a couple of scripts I use:&lt;BR /&gt;&lt;BR /&gt;# cat processmem&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;# processmem - display memory claimed by a process&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 "processmem \"process\""&lt;BR /&gt;  echo "Example:"&lt;BR /&gt;  echo "processmem rpc"&lt;BR /&gt;  exit 1&lt;BR /&gt;fi&lt;BR /&gt;echo " "&lt;BR /&gt;&lt;BR /&gt;PROCESS=$1&lt;BR /&gt;&lt;BR /&gt;mps=0&lt;BR /&gt;#for sz in `ps -elf | grep $PROCESS | grep -v grep | awk '{print $10}'`&lt;BR /&gt;for sz in `UNIX95= ps -e -o vsz=Kbytes -o ruser -o pid,args=Command-Line | sort -rnk1 | grep -v Kbytes | grep $PROCESS | awk '{print $1}'`&lt;BR /&gt;do&lt;BR /&gt;mps=`expr $mps + $sz`&lt;BR /&gt;done&lt;BR /&gt;#echo `expr $mps \* 4096`&lt;BR /&gt;echo "\nMemory claimed by $PROCESS: $mps Kbytes.\n"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# cat usermem&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;# usermem - display memory claimed by a user&lt;BR /&gt;# gwild 06232003&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>Fri, 07 Dec 2007 14:19:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113319#M726661</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-12-07T14:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113320#M726662</link>
      <description>2Geoff Wild&lt;BR /&gt;As I understud your scrips do the same things I did above: simple summarize of the SZ and VSZ columns of the ps output.&lt;BR /&gt;&lt;BR /&gt;And as I mentioned above the SZ column is not always equal to 4096 for the different processes. Even though "getcont _SC_PAGE_SIZE" claims that PAGE_SISE IS 4096.&lt;BR /&gt;So, it is NOT correct to multiply SZ by 4096&lt;BR /&gt;&lt;BR /&gt;Am I wrong?&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Dec 2007 14:41:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113320#M726662</guid>
      <dc:creator>ViS_2</dc:creator>
      <dc:date>2007-12-07T14:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113321#M726663</link>
      <description>sz is in units of pages, it isn't supposed to add up to the amount of bytes in a page.&lt;BR /&gt;&lt;BR /&gt;i.e. If you're using 4 pages (sz == 4) on most systems that translates to consuming 16kb of physical memory (4 * 4096 bytes). &lt;BR /&gt;&lt;BR /&gt;And the chatr (or vps_* tunables) is not changing the system page size -- that affects the page size hint used for variable translation sizes. The system base page size determines the smallest possible size which can be used for a translation ever anywhere. [It also affects the per-page metadata within the kernel, obviously]. Variable translations are ones which are composed of a group of said pages but use a single translation. For example -- if you're allocating 16 4kb pages in a single contiguous range, you can represent that with a single 64kb translation instead of 16 unique translations. This keeps TLB miss rates down.&lt;BR /&gt;&lt;BR /&gt;And yeah -- sz is physical, vsz is virtual. That's what I said in the first place.</description>
      <pubDate>Fri, 07 Dec 2007 14:54:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113321#M726663</guid>
      <dc:creator>Don Morris_1</dc:creator>
      <dc:date>2007-12-07T14:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113322#M726664</link>
      <description>&lt;!--!*#--&gt;"I try to calculate the amount of the memory that is used by all processes in the system."&lt;BR /&gt;&lt;BR /&gt;Do you want to know "real" memory used - as in ram?  Or do you want to count "virtual" memory?&lt;BR /&gt;&lt;BR /&gt;If you want "How much total ram is in use", then use the attached C program called memdetail.&lt;BR /&gt;&lt;BR /&gt;You can compile with the native compiler...&lt;BR /&gt;&lt;BR /&gt;Output like:&lt;BR /&gt;&lt;BR /&gt;# memdetail&lt;BR /&gt;Memory Stat      total    used   avail   %used&lt;BR /&gt;physical        16128.0 14724.9 1403.1     91%&lt;BR /&gt;active virtual  18692.0 6386.9  12305.1    34%&lt;BR /&gt;active real     11970.9 3868.4  8102.5     32%&lt;BR /&gt;memory swap     16128.0 3883.2  12244.8    24%&lt;BR /&gt;device swap     26528.0 17482.7 9045.3     66%&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Dec 2007 14:55:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113322#M726664</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-12-07T14:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113323#M726665</link>
      <description>2Don Morris&lt;BR /&gt;"And yeah -- sz is physical, vsz is virtual. That's what I said in the first place."&lt;BR /&gt;&lt;BR /&gt;OK&lt;BR /&gt;"sz is physical" measured in what? KB?&lt;BR /&gt;I'm stupid, sorry.))</description>
      <pubDate>Fri, 07 Dec 2007 15:26:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113323#M726665</guid>
      <dc:creator>ViS_2</dc:creator>
      <dc:date>2007-12-07T15:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113324#M726666</link>
      <description>SZ is measured in pages as the man page you quoted stated. (I have to apologize here, I didn't bother looking that up and calling it out explicitly in the original message).&lt;BR /&gt;&lt;BR /&gt;Besides Geoff's always excellent scripts/techniques, you could try the attached&lt;BR /&gt;[compile as:&lt;BR /&gt;&lt;BR /&gt;cc +DD32 -D_PSTAT64 -o object_dump object_dump.c&lt;BR /&gt;&lt;BR /&gt;or &lt;BR /&gt;&lt;BR /&gt;cc +DD64 -o object_dump object_dump.c&lt;BR /&gt;&lt;BR /&gt;[Rename the binary anything you want, if you wish].&lt;BR /&gt;&lt;BR /&gt;Caveat: I don't have 11.11 or 11.0 systems, so I may have compilation issues there. This was written on r11.31 IPF.&lt;BR /&gt;&lt;BR /&gt;If you just want the system wide totals:&lt;BR /&gt;&lt;BR /&gt;# ./object_dump&lt;BR /&gt;VIRT/PHYS/LOCKED/SWAP summaries in pages.&lt;BR /&gt;System page size is 4096 or 0x1000 bytes.&lt;BR /&gt;System Wide Mb in Use:&lt;BR /&gt;        Virt: 7221      Phys: 746       Swap: 321&lt;BR /&gt;&lt;BR /&gt;If you want to know a particular process:&lt;BR /&gt;# ./object_dump -p 699&lt;BR /&gt;VIRT/PHYS/LOCKED/SWAP summaries in pages.&lt;BR /&gt;System page size is 4096 or 0x1000 bytes.&lt;BR /&gt;PID 699 Mb in Use:&lt;BR /&gt;        Virt: 274       Phys: 6 Swap: 1&lt;BR /&gt;&lt;BR /&gt;If you need to see details:&lt;BR /&gt;# ./object_dump -v -p 699&lt;BR /&gt;VIRT/PHYS/LOCKED/SWAP summaries in pages.&lt;BR /&gt;System page size is 4096 or 0x1000 bytes.&lt;BR /&gt;PID 699:&lt;BR /&gt; UNUSED TYPE  consumes 0 VIRT, 0 PHYS, 0 LOCKED and 0 SWAP.&lt;BR /&gt; UAREA  consumes 18 VIRT, 16 PHYS, 0 LOCKED and 18 SWAP.&lt;BR /&gt; TEXT  consumes 50 VIRT, 46 PHYS, 0 LOCKED and 0 SWAP.&lt;BR /&gt; DATA/HEAP  consumes 200 VIRT, 142 PHYS, 0 LOCKED and 200 SWAP.&lt;BR /&gt; MAIN STACK  consumes 65536 VIRT, 8 PHYS, 0 LOCKED and 8 SWAP.&lt;BR /&gt; SYSV SHMEM  consumes 0 VIRT, 0 PHYS, 0 LOCKED and 0 SWAP.&lt;BR /&gt; NULL DEREF  consumes 1 VIRT, 1 PHYS, 0 LOCKED and 1 SWAP.&lt;BR /&gt; MEM MAPPED I/O  consumes 0 VIRT, 0 PHYS, 0 LOCKED and 0 SWAP.&lt;BR /&gt; MMAP  consumes 2321 VIRT, 1439 PHYS, 0 LOCKED and 108 SWAP.&lt;BR /&gt; GRAPHICS SPECIFIC  consumes 0 VIRT, 0 PHYS, 0 LOCKED and 0 SWAP.&lt;BR /&gt; GRAPHICS SPECIFIC  consumes 0 VIRT, 0 PHYS, 0 LOCKED and 0 SWAP.&lt;BR /&gt; RSE STACK  consumes 2048 VIRT, 1 PHYS, 0 LOCKED and 2 SWAP.&lt;BR /&gt;PID 699 Mb in Use:&lt;BR /&gt;        Virt: 274       Phys: 6 Swap: 1&lt;BR /&gt;&lt;BR /&gt;If you want a LOT of detail, add another -v option [order doesn't matter] like -v -v -pid 699. Verbosity works on the system-wide option as well, but that will be a LOT of data.&lt;BR /&gt;&lt;BR /&gt;It wasn't hard to add group data (-g option):&lt;BR /&gt;# ./object_dump -g 1644&lt;BR /&gt;VIRT/PHYS/LOCKED/SWAP summaries in pages.&lt;BR /&gt;System page size is 4096 or 0x1000 bytes.&lt;BR /&gt;PID 1644 Mb in Use:&lt;BR /&gt;        Virt: 313       Phys: 29        Swap: 11&lt;BR /&gt;PID 1647 Mb in Use:&lt;BR /&gt;        Virt: 367       Phys: 43        Swap: 26&lt;BR /&gt;PID 1646 Mb in Use:&lt;BR /&gt;        Virt: 317       Phys: 25        Swap: 7&lt;BR /&gt;PID 1645 Mb in Use:&lt;BR /&gt;        Virt: 296       Phys: 16        Swap: 1&lt;BR /&gt;PID 6753 Mb in Use:&lt;BR /&gt;        Virt: 307       Phys: 23        Swap: 2&lt;BR /&gt;Group Wide Mb in Use:&lt;BR /&gt;        Virt: 1603      Phys: 138       Swap: 50&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Dec 2007 16:02:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113324#M726666</guid>
      <dc:creator>Don Morris_1</dc:creator>
      <dc:date>2007-12-07T16:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113325#M726667</link>
      <description>&lt;!--!*#--&gt;Very nice Don - when I compile - I get some warnings though:&lt;BR /&gt;&lt;BR /&gt;root@sha1 [ /home/gwild ]&lt;BR /&gt;# cc +DD64 -o object_dump object_dump.c&lt;BR /&gt;"object_dump.c", line 189: warning #2181-D: argument is incompatible with&lt;BR /&gt;          corresponding format string conversion&lt;BR /&gt;                                        virt_totals[k], phys_totals[k],&lt;BR /&gt;                                        ^&lt;BR /&gt;&lt;BR /&gt;"object_dump.c", line 189: warning #2181-D: argument is incompatible with&lt;BR /&gt;          corresponding format string conversion&lt;BR /&gt;                                        virt_totals[k], phys_totals[k],&lt;BR /&gt;                                                        ^&lt;BR /&gt;&lt;BR /&gt;"object_dump.c", line 190: warning #2181-D: argument is incompatible with&lt;BR /&gt;          corresponding format string conversion&lt;BR /&gt;                                        mlock_totals[k], swap_totals[k]);&lt;BR /&gt;                                        ^&lt;BR /&gt;&lt;BR /&gt;"object_dump.c", line 190: warning #2181-D: argument is incompatible with&lt;BR /&gt;          corresponding format string conversion&lt;BR /&gt;                                        mlock_totals[k], swap_totals[k]);&lt;BR /&gt;                                                         ^&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Seems to be okay though as:&lt;BR /&gt;&lt;BR /&gt;# ./object_dump&lt;BR /&gt;VIRT/PHYS/LOCKED/SWAP summaries in pages.&lt;BR /&gt;System page size is 4096 or 0x1000 bytes.&lt;BR /&gt;System Wide Mb in Use:&lt;BR /&gt;        Virt: 16667     Phys: 3367      Swap: 2963&lt;BR /&gt;&lt;BR /&gt;# uname -a&lt;BR /&gt;HP-UX sha1 B.11.31 U ia64 3122715088 unlimited-user license&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Dec 2007 17:28:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage/m-p/4113325#M726667</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-12-07T17:28:09Z</dc:date>
    </item>
  </channel>
</rss>

