<?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: physmem : symbol not found. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778429#M942948</link>
    <description>Bill, &lt;BR /&gt;&lt;BR /&gt;Here's what I use:&lt;BR /&gt;&lt;BR /&gt;HPUX=/stand/vmunix&lt;BR /&gt;MAJORREV=$(uname -r | cut -f2 -d .)&lt;BR /&gt;if [ $MAJORREV -ge "11.0" ]&lt;BR /&gt;then&lt;BR /&gt;  MYSYMBOL="phys_mem_pages"&lt;BR /&gt;else&lt;BR /&gt;  MYSYMBOL="physmem"&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;MYMEM=$(echo "${MYSYMBOL}/D"         | adb $HPUX /dev/kmem         | grep "${MYSYMBOL}: *."         | awk '{print $2*4/1024}')&lt;BR /&gt;echo $MYMEM&lt;BR /&gt;&lt;BR /&gt;What's your OS version?&lt;BR /&gt;&lt;BR /&gt;Pete</description>
    <pubDate>Fri, 02 Aug 2002 12:13:56 GMT</pubDate>
    <dc:creator>Pete Randall</dc:creator>
    <dc:date>2002-08-02T12:13:56Z</dc:date>
    <item>
      <title>physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778427#M942946</link>
      <description>Hi,&lt;BR /&gt;one of my scripts is coming up with this:&lt;BR /&gt;&lt;BR /&gt;echo physmem/D | adb64 -k /stand/vmunix /dev/mem | tail -1 | awk '{print $2/256 " Mbytes"}'&lt;BR /&gt;0 Mbytes&lt;BR /&gt;&lt;BR /&gt;!&lt;BR /&gt;&lt;BR /&gt;echo physmem/D | adb64 -k /stand/vmunix /dev/mem&lt;BR /&gt;symbol not found&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;echo phys_mem_pages/D | adb64 -k /stand/vmunix /dev/mem | tail -1 | awk '{print $2/256 " Mbytes"}'&lt;BR /&gt;1024 Mbytes&lt;BR /&gt;&lt;BR /&gt;Also,&lt;BR /&gt;/usr/sam/lbin/getmem&lt;BR /&gt;48&lt;BR /&gt;&lt;BR /&gt;48 whats??&lt;BR /&gt;&lt;BR /&gt; # swapinfo -tm&lt;BR /&gt;             Mb      Mb      Mb   PCT  START/      Mb&lt;BR /&gt;TYPE      AVAIL    USED    FREE  USED   LIMIT RESERVE  PRI  NAME&lt;BR /&gt;dev        1024       0    1024    0%       0       -    1  /dev/vg00/lvol2&lt;BR /&gt;reserve       -     301    -301&lt;BR /&gt;memory      320     130     190   41%&lt;BR /&gt;total      1344     431     913   32%       -       0    -&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;It used to work long time ago!..&lt;BR /&gt;&lt;BR /&gt;pereal - /home/trsh/.files # model&lt;BR /&gt;9000/800/A500-5X&lt;BR /&gt;pereal - /home/trsh/.files # uname -a&lt;BR /&gt;HP-UX pereal B.11.00 U 9000/800 1518780528 unlimited-user license&lt;BR /&gt;&lt;BR /&gt;So, who can tell me how much RAM, I have in this box.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Bill&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Aug 2002 12:03:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778427#M942946</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-08-02T12:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778428#M942947</link>
      <description>Bill,&lt;BR /&gt;&lt;BR /&gt;It is weird but /usr/sam/lbin/getmem should return your RAM (in MB).  That number is too low on your system.  &lt;BR /&gt;&lt;BR /&gt;This is "what" outputs on getmem on my system, HP-UX 11.0, 9000/800.&lt;BR /&gt;&lt;BR /&gt;# what /usr/sam/lbin/getmem&lt;BR /&gt;/usr/sam/lbin/getmem:&lt;BR /&gt;     HP System Administration Manager Version 3.5&lt;BR /&gt;        built on date: 05/20/99 16:21:00&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hai</description>
      <pubDate>Fri, 02 Aug 2002 12:13:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778428#M942947</guid>
      <dc:creator>Hai Nguyen_1</dc:creator>
      <dc:date>2002-08-02T12:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778429#M942948</link>
      <description>Bill, &lt;BR /&gt;&lt;BR /&gt;Here's what I use:&lt;BR /&gt;&lt;BR /&gt;HPUX=/stand/vmunix&lt;BR /&gt;MAJORREV=$(uname -r | cut -f2 -d .)&lt;BR /&gt;if [ $MAJORREV -ge "11.0" ]&lt;BR /&gt;then&lt;BR /&gt;  MYSYMBOL="phys_mem_pages"&lt;BR /&gt;else&lt;BR /&gt;  MYSYMBOL="physmem"&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;MYMEM=$(echo "${MYSYMBOL}/D"         | adb $HPUX /dev/kmem         | grep "${MYSYMBOL}: *."         | awk '{print $2*4/1024}')&lt;BR /&gt;echo $MYMEM&lt;BR /&gt;&lt;BR /&gt;What's your OS version?&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Fri, 02 Aug 2002 12:13:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778429#M942948</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-08-02T12:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778430#M942949</link>
      <description>Sorry, I can't read.  Your OS version is 11.0 so you need to use phys_mem_pages rather than physmem.&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Fri, 02 Aug 2002 12:16:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778430#M942949</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-08-02T12:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778431#M942950</link>
      <description># what /usr/sam/lbin/getmem&lt;BR /&gt;/usr/sam/lbin/getmem:&lt;BR /&gt;        HP System Administration Manager Version 3.5&lt;BR /&gt;           built on date: 05/20/99 16:21:00&lt;BR /&gt;--&lt;BR /&gt;QPK1100  B.11.00.54.7   Quality Pack for HP-UX 11.00, September 2001&lt;BR /&gt; XSWGR1100                     B.11.00.47.08  General Release Patches, November 1999 (ACE)&lt;BR /&gt;  XSWHWCR1100                   B.11.00.54.6   HP-UX Hardware Enablement and Critical Patches, September 2001&lt;BR /&gt;--&lt;BR /&gt; # uname -a&lt;BR /&gt;HP-UX pereal B.11.00 U 9000/800 1518780528 unlimited-user license&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Aug 2002 12:17:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778431#M942950</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-08-02T12:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778432#M942951</link>
      <description>CPU   LOAD   USER   NICE    SYS   IDLE  BLOCK  SWAIT   INTR   SSYS&lt;BR /&gt; 0    0.67   0.6%   0.0%   0.0%  99.4%   0.0%   0.0%   0.0%   0.0%&lt;BR /&gt; 1    0.93   0.0%   0.0%   0.4%  99.6%   0.0%   0.0%   0.0%   0.0%&lt;BR /&gt;---   ----  -----  -----  -----  -----  -----  -----  -----  -----&lt;BR /&gt;avg   0.80   0.2%   0.0%   0.2%  99.6%   0.0%   0.0%   0.0%   0.0%&lt;BR /&gt;&lt;BR /&gt;Memory: 154640K (76980K) real, 156188K (107056K) virtual, 149288K free  Page# 1/4&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Aug 2002 12:19:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778432#M942951</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-08-02T12:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778433#M942952</link>
      <description>Bill,&lt;BR /&gt;&lt;BR /&gt;Do you have glance on your box?  If so, you can try:&lt;BR /&gt;&lt;BR /&gt;# /opt/perf/bin/glance -m&lt;BR /&gt;&lt;BR /&gt;and look for "Phys Mem:" at the end of the line next to the last.  To quit glance, type "q".&lt;BR /&gt;&lt;BR /&gt;Hai</description>
      <pubDate>Fri, 02 Aug 2002 12:27:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778433#M942952</guid>
      <dc:creator>Hai Nguyen_1</dc:creator>
      <dc:date>2002-08-02T12:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778434#M942953</link>
      <description>I don't have glance installed, but if I did am nearly positive that it will give me yet another value...&lt;BR /&gt;&lt;BR /&gt;Is there not an easy way? or at least one that works?!&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
      <pubDate>Fri, 02 Aug 2002 12:34:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778434#M942953</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-08-02T12:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778435#M942954</link>
      <description>Bill,&lt;BR /&gt;&lt;BR /&gt;I really can't read, I guess.  You did try phys_mem_pages.  I tried both my method and yours on my 11.0 N-class and came up with 8192 Mbytes. /usr/sam/lbin/getmem, however, came up with 192.&lt;BR /&gt;So, I'm with you - 192 what?&lt;BR /&gt;&lt;BR /&gt;What does dmesg say about memory?&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Fri, 02 Aug 2002 12:37:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778435#M942954</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-08-02T12:37:45Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778436#M942955</link>
      <description>Bill,&lt;BR /&gt;&lt;BR /&gt;How about this?&lt;BR /&gt;&lt;BR /&gt;# dmesg | grep "Physical:"&lt;BR /&gt;&lt;BR /&gt;The first value is your RAM in KB.&lt;BR /&gt;&lt;BR /&gt;Hai</description>
      <pubDate>Fri, 02 Aug 2002 12:41:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778436#M942955</guid>
      <dc:creator>Hai Nguyen_1</dc:creator>
      <dc:date>2002-08-02T12:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778437#M942956</link>
      <description>echo phys_mem_pages/D | adb64 -k /stand/vmunix /dev/mem &lt;BR /&gt;result is 1024.&lt;BR /&gt;&lt;BR /&gt;Glance is installed:&lt;BR /&gt;&lt;BR /&gt;Total VM : 161.1mb   Sys Mem  :  70.8mb   User Mem: 311.4mb   Phys Mem:  1024mb&lt;BR /&gt;Active VM: 113.2mb   Buf Cache: 512.0mb   Free Mem: 129.8mb&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;But I don't believe it...&lt;BR /&gt;I think I've got more like 256 MB RAM installed?&lt;BR /&gt;Unless someone added some?&lt;BR /&gt;&lt;BR /&gt;Bill</description>
      <pubDate>Fri, 02 Aug 2002 12:43:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778437#M942956</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-08-02T12:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778438#M942957</link>
      <description>Hi,&lt;BR /&gt;This might do the trick :&lt;BR /&gt;#echo "selclass qualifier memory;info;wait;infolog" | cstm | grep "Total Conf"&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Tom</description>
      <pubDate>Fri, 02 Aug 2002 12:44:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778438#M942957</guid>
      <dc:creator>Tom Geudens</dc:creator>
      <dc:date>2002-08-02T12:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778439#M942958</link>
      <description>Bill,&lt;BR /&gt;&lt;BR /&gt;I think the system came up with less RAM first when it installed and you 've added some more memory in that. In this case the 'getmem' utility will give you wrong answers. If you invoke sam, performance monitors, system properties, you will get the correct value.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Aug 2002 12:44:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778439#M942958</guid>
      <dc:creator>Sajid_1</dc:creator>
      <dc:date>2002-08-02T12:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778440#M942959</link>
      <description>Bill,&lt;BR /&gt;&lt;BR /&gt;And what about Ignite's print_manifest |grep Main?&lt;BR /&gt;&lt;BR /&gt;Main Memory:        8192 MB&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Fri, 02 Aug 2002 12:44:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778440#M942959</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-08-02T12:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778441#M942960</link>
      <description>From syslog.log (dmesg full of other garbage)&lt;BR /&gt;&lt;BR /&gt;Jul 30 09:59:45 pereal vmunix: Memory Information:&lt;BR /&gt;Jul 30 09:59:45 pereal vmunix:     physical page size = 4096 bytes, logical page size = 4096 bytes&lt;BR /&gt;Jul 30 09:59:45 pereal vmunix:     Physical: 1048576 Kbytes, lockable: 325372 Kbytes, available: 385300 Kbytes&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Aug 2002 12:45:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778441#M942960</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-08-02T12:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778442#M942961</link>
      <description>Bill,&lt;BR /&gt;&lt;BR /&gt;It's really beginning to look like you've got 1GB.  Must be the memory fairy paid you a visit.&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Fri, 02 Aug 2002 12:46:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778442#M942961</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-08-02T12:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778443#M942962</link>
      <description>STM:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Basic Memory Description&lt;BR /&gt;&lt;BR /&gt;    Module Type: MEMORY&lt;BR /&gt;    Total Configured Memory   : 1024 MB&lt;BR /&gt;    Page Size: 4096 Bytes&lt;BR /&gt;&lt;BR /&gt;    Memory interleaving is supported on this machine and is ON.&lt;BR /&gt;&lt;BR /&gt;Memory Board Inventory&lt;BR /&gt;&lt;BR /&gt;   DIMM Slot      Size (MB)&lt;BR /&gt;   ---------      ---------&lt;BR /&gt;          01            512&lt;BR /&gt;          02            512&lt;BR /&gt;   ---------      ---------&lt;BR /&gt;   System Total (MB):  1024&lt;BR /&gt;&lt;BR /&gt;I guess we do have 1G..&lt;BR /&gt;I'm kinda wondering where it came from!&lt;BR /&gt;&lt;BR /&gt;Great!&lt;BR /&gt;&lt;BR /&gt;so swapinfo output then, how can I interpret that?&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
      <pubDate>Fri, 02 Aug 2002 12:48:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778443#M942962</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-08-02T12:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778444#M942963</link>
      <description>Bill,&lt;BR /&gt;&lt;BR /&gt;At least now dmesg in syslog.log and glance agreed on the amount of RAM you got on the box.&lt;BR /&gt;&lt;BR /&gt;I'm looking for some other way to cross-check.&lt;BR /&gt;&lt;BR /&gt;Hai</description>
      <pubDate>Fri, 02 Aug 2002 12:49:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778444#M942963</guid>
      <dc:creator>Hai Nguyen_1</dc:creator>
      <dc:date>2002-08-02T12:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: physmem : symbol not found.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778445#M942964</link>
      <description>From TKB document - A5564404 -  "At version 11.0 of HP-UX, the physmem parameter has&lt;BR /&gt;been replaced by the phys_mem_pages.&lt;BR /&gt;&lt;BR /&gt;You should therefore rework your command syntax as&lt;BR /&gt;follows:&lt;BR /&gt;&lt;BR /&gt;     echo phys_mem_pages /D | adb /stand/vmunix /dev/kmem "&lt;BR /&gt;&lt;BR /&gt;Other options are:&lt;BR /&gt;# stm&lt;BR /&gt;# sam&lt;BR /&gt;# reboot and interrupt it, then go to information menu.&lt;BR /&gt;&lt;BR /&gt;gl,</description>
      <pubDate>Fri, 02 Aug 2002 12:49:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physmem-symbol-not-found/m-p/2778445#M942964</guid>
      <dc:creator>Sajid_1</dc:creator>
      <dc:date>2002-08-02T12:49:46Z</dc:date>
    </item>
  </channel>
</rss>

