<?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: ADB issue on 11iv2 in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977245#M99464</link>
    <description>Hi Geoff:&lt;BR /&gt;&lt;BR /&gt;According to the manpages, 'machinfo' is confined to Itanium processors only:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/en/B2355-60105/machinfo.1.html" target="_blank"&gt;http://www.docs.hp.com/en/B2355-60105/machinfo.1.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 05 May 2006 16:56:49 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2006-05-05T16:56:49Z</dc:date>
    <item>
      <title>ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977238#M99457</link>
      <description>Comparing 2 RP4440 HP-UX 11.23 systems.Both have:&lt;BR /&gt;&lt;BR /&gt;HPUX11i-OE-Ent                B.11.23.0505   HP-UX Enterprise Operating Environment Component &lt;BR /&gt;&lt;BR /&gt;I have a script called hpmem (attached).&lt;BR /&gt;&lt;BR /&gt;On one system, works perfect...&lt;BR /&gt;&lt;BR /&gt;On other, I get an adb error - but it still works:&lt;BR /&gt;&lt;BR /&gt;# hpmem&lt;BR /&gt;HP-UX pc1104 B.11.23 U 9000/800 3394666127 unlimited-user license&lt;BR /&gt;CPU Count: 4&lt;BR /&gt;CPU Speed: 999 MHz&lt;BR /&gt;CPU HW Support: 64-bit&lt;BR /&gt;Kernel Support: 64-bit&lt;BR /&gt;adb: warning: No memory file specified ...&lt;BR /&gt;adb: warning: Using 'core'.&lt;BR /&gt;adb: warning: Object file not SOM ...&lt;BR /&gt;adb: warning: Shared library symbols could not be read.&lt;BR /&gt;RAM Size: 6142 MB&lt;BR /&gt;bufpages: 963 MB&lt;BR /&gt;maxuprc: 3686&lt;BR /&gt;maxvgs: 30&lt;BR /&gt;maxfiles: 2048&lt;BR /&gt;max_thread_proc:&lt;BR /&gt;nfile: 63488&lt;BR /&gt;nproc: 4096&lt;BR /&gt;ninode: 34816&lt;BR /&gt;shmmax: 1073741824&lt;BR /&gt;shmmni: 512&lt;BR /&gt;dbc_max_pct: 18&lt;BR /&gt;&lt;BR /&gt;With set -x&lt;BR /&gt;&lt;BR /&gt;Kernel Support: 64-bit&lt;BR /&gt;+ GetKernelSymbol memory_installed_in_machine&lt;BR /&gt;+ echo memory_installed_in_machine/D&lt;BR /&gt;+ adb /stand/vmunix /dev/kmem&lt;BR /&gt;+ read junk junk2 kval&lt;BR /&gt;+ tr \012&lt;BR /&gt;+ + uname -r&lt;BR /&gt;+ cut -d. -f3&lt;BR /&gt;ver=23&lt;BR /&gt;+ let ver &amp;gt; 22&lt;BR /&gt;+ + /usr/sbin/kcpath -x&lt;BR /&gt;kernel=/stand/current/vmunix&lt;BR /&gt;+ + echo phys_mem_pages/A&lt;BR /&gt;+ adb /stand/current/vmunix /dev/kmem&lt;BR /&gt;+ awk {print $2}&lt;BR /&gt;+ tail +2&lt;BR /&gt;hexval=0x17fe00&lt;BR /&gt;+ + echo 0x17fe00=D&lt;BR /&gt;+ adb&lt;BR /&gt;adb: warning: No memory file specified ...&lt;BR /&gt;adb: warning: Using 'core'.&lt;BR /&gt;adb: warning: Object file not SOM ...&lt;BR /&gt;adb: warning: Shared library symbols could not be read.&lt;BR /&gt;REAL_MEM=                1572352&lt;BR /&gt;+ + expr 1572352 / 256&lt;BR /&gt;mb=6142&lt;BR /&gt;+ print RAM Size: 6142 MB&lt;BR /&gt;RAM Size: 6142 MB&lt;BR /&gt;&lt;BR /&gt;Something up with these lines?&lt;BR /&gt;&lt;BR /&gt;  hexval=$(echo "phys_mem_pages/A" | adb  $kernel /dev/kmem | tail +2 | awk '{print $2}')&lt;BR /&gt;  REAL_MEM=$(echo ${hexval}=D | adb)&lt;BR /&gt;  mb=$(expr ${REAL_MEM} / 256)&lt;BR /&gt;&lt;BR /&gt;From command line:&lt;BR /&gt;&lt;BR /&gt;# echo "phys_mem_pages/A" | adb /stand/current/vmunix /dev/kmem|tail +2 |awk '{print $2}'&lt;BR /&gt;0x17fe00&lt;BR /&gt;&lt;BR /&gt;no error - so that seems fine...&lt;BR /&gt;&lt;BR /&gt;Try full:&lt;BR /&gt;&lt;BR /&gt;hexval=$(echo "phys_mem_pages/A" | adb /stand/current/vmunix /dev/kmem|tail +2 |awk '{print $2}')&lt;BR /&gt;&lt;BR /&gt;That's okay...&lt;BR /&gt;&lt;BR /&gt;REAL_MEM=$(echo ${hexval}=D | adb)&lt;BR /&gt;adb: warning: No memory file specified ...&lt;BR /&gt;adb: warning: Using 'core'.&lt;BR /&gt;adb: warning: Object file not SOM ...&lt;BR /&gt;adb: warning: Shared library symbols could not be read.&lt;BR /&gt;&lt;BR /&gt;Aha - what gives?&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 04 May 2006 09:03:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977238#M99457</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-05-04T09:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977239#M99458</link>
      <description>Hi,&lt;BR /&gt;try to look core file presence ...&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=933449" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=933449&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Enrico</description>
      <pubDate>Thu, 04 May 2006 09:49:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977239#M99458</guid>
      <dc:creator>Enrico P.</dc:creator>
      <dc:date>2006-05-04T09:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977240#M99459</link>
      <description>Is it really a good idea to be using adb to try to pull those things from the kernel?&lt;BR /&gt;&lt;BR /&gt;IIRC there is kctune to get the value of those tunables.  Not sure about some of the other stuff  if there is a way to grab them via a script, but it might be good to investigate to avoid using adb that way.</description>
      <pubDate>Thu, 04 May 2006 19:37:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977240#M99459</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2006-05-04T19:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977241#M99460</link>
      <description>Can kctune get cpu and memory info?&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Fri, 05 May 2006 12:10:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977241#M99460</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-05-05T12:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977242#M99461</link>
      <description>Not that I'm aware.  At least some of that  comes out of machinfo though.</description>
      <pubDate>Fri, 05 May 2006 14:47:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977242#M99461</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2006-05-05T14:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977243#M99462</link>
      <description>Rick, but isn't /usr/contrib/bin/machinfo for IA64 only?&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Fri, 05 May 2006 15:46:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977243#M99462</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-05-05T15:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977244#M99463</link>
      <description>I wasn't under that impression, but then I also don't have a PA-RISC system running 11.23 to try it on.  Some of what you want may also be available via getconf</description>
      <pubDate>Fri, 05 May 2006 16:13:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977244#M99463</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2006-05-05T16:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977245#M99464</link>
      <description>Hi Geoff:&lt;BR /&gt;&lt;BR /&gt;According to the manpages, 'machinfo' is confined to Itanium processors only:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/en/B2355-60105/machinfo.1.html" target="_blank"&gt;http://www.docs.hp.com/en/B2355-60105/machinfo.1.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 May 2006 16:56:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977245#M99464</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-05-05T16:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977246#M99465</link>
      <description>Nothing wrong with adb -- it has definitely undergone some changes to support IA64 but as has always been true, HP-UX symbols are subject to change without notice. It appears that adb's ability to convert a number to another base requires some changes (or may require use of bc instead). The warnings indicate that it expects a memory and object file.&lt;BR /&gt; &lt;BR /&gt;I wrote a similar script to gather info from HP-UX versions 7.xx, 8.xx, 9.xx and 10.xx and there were kernel changes in every revision. Sorry, I don't have a list of the new or changed symbols. &lt;BR /&gt; &lt;BR /&gt;Here's a link for 11v2 Release Notes. adb is covered on page 274:&lt;BR /&gt; &lt;BR /&gt;&lt;A href="http://docs.hp.com/en/5990-8153/5990-8153.pdf" target="_blank"&gt;http://docs.hp.com/en/5990-8153/5990-8153.pdf&lt;/A&gt;</description>
      <pubDate>Fri, 05 May 2006 17:17:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977246#M99465</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2006-05-05T17:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977247#M99466</link>
      <description>Well, that's annoying - indeed the manpage does say IPF only - in something right up at the top in the header I often ignore :(  and nothing in the text itself.</description>
      <pubDate>Fri, 05 May 2006 18:23:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977247#M99466</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2006-05-05T18:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977248#M99467</link>
      <description>Hi Geoff, &lt;BR /&gt;&lt;BR /&gt;"machinfo" added to HP-UX from 11.2x onwards. But, when you install 11.23 in a PA box, you won't get this nefty little utility. &lt;BR /&gt;&lt;BR /&gt;Not sure will it be available from 11.31 onwards to PA.. ?? &lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Sat, 06 May 2006 08:18:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977248#M99467</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-05-06T08:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977249#M99468</link>
      <description>Shalo  Geoff,&lt;BR /&gt;&lt;BR /&gt;Interesting. Another little nudge form HP to go Itanium. You get the feature on IPF but not PA-RISC.&lt;BR /&gt;&lt;BR /&gt;If the "rumor" is true and 11.31 is the last PA-RISC release this brings forth important decisions for the admins that make recommendations and the management that listens. PA-RISC is even today not being provided the same level of support as Itanium.&lt;BR /&gt;&lt;BR /&gt;Interesting indeed, as last Thursday I tried to do my first 11i v2 install on a rx2600 box (I admin a few now) and the box just broke and won't even except its 11i v1.6 Ignite backup.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Sat, 06 May 2006 15:07:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977249#M99468</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-05-06T15:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: ADB issue on 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977250#M99469</link>
      <description>In the end it was just the core in the same dir whrn I ran the script...&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Mon, 08 May 2006 08:11:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adb-issue-on-11iv2/m-p/4977250#M99469</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-05-08T08:11:11Z</dc:date>
    </item>
  </channel>
</rss>

