<?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: A500 Hardware Spec in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/a500-hardware-spec/m-p/3446238#M851792</link>
    <description>Emma,&lt;BR /&gt;&lt;BR /&gt;I run this:&lt;BR /&gt;&lt;BR /&gt;echo `hostname` "is a " `model |sed 's/9000\/800\///' |sed 's/9000\/899\///'` "w&lt;BR /&gt;ith" `ioscan -k |grep -n processor |wc -l` `cpuspeed&lt;BR /&gt;` "Mhz processors and" `memory` "of memory"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;where cpuspeed looks like this:&lt;BR /&gt;&lt;BR /&gt;HPUX=/stand/vmunix&lt;BR /&gt;&lt;BR /&gt;MHZ=$(echo itick_per_tick/D \&lt;BR /&gt;        | adb -k $HPUX /dev/kmem \&lt;BR /&gt;        | tail -1 \&lt;BR /&gt;        | awk '{print $2/10000}')&lt;BR /&gt;echo $MHZ&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and memory looks like this:&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" \&lt;BR /&gt;        | adb $HPUX /dev/kmem \&lt;BR /&gt;        | grep "${MYSYMBOL}: *." \&lt;BR /&gt;        | awk '{printf "%.0f MB\n",$2/256}')&lt;BR /&gt;echo $MYMEM&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
    <pubDate>Fri, 17 Dec 2004 14:44:09 GMT</pubDate>
    <dc:creator>Pete Randall</dc:creator>
    <dc:date>2004-12-17T14:44:09Z</dc:date>
    <item>
      <title>A500 Hardware Spec</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/a500-hardware-spec/m-p/3446236#M851790</link>
      <description>Hi folks&lt;BR /&gt;&lt;BR /&gt;What command(s) can I run on a platform to determine the h/w spec of the a box.  I want to know things like no of disks and amount of RAM.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;Emma</description>
      <pubDate>Fri, 17 Dec 2004 14:34:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/a500-hardware-spec/m-p/3446236#M851790</guid>
      <dc:creator>Emma_8</dc:creator>
      <dc:date>2004-12-17T14:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: A500 Hardware Spec</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/a500-hardware-spec/m-p/3446237#M851791</link>
      <description>Run "print_manifest" which is part of the ignite package.&lt;BR /&gt; &lt;BR /&gt;"ioscan" can tell you the devices and bus information.&lt;BR /&gt; &lt;BR /&gt;HTH&lt;BR /&gt; &lt;BR /&gt;-- Rod Hills</description>
      <pubDate>Fri, 17 Dec 2004 14:39:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/a500-hardware-spec/m-p/3446237#M851791</guid>
      <dc:creator>Rodney Hills</dc:creator>
      <dc:date>2004-12-17T14:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: A500 Hardware Spec</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/a500-hardware-spec/m-p/3446238#M851792</link>
      <description>Emma,&lt;BR /&gt;&lt;BR /&gt;I run this:&lt;BR /&gt;&lt;BR /&gt;echo `hostname` "is a " `model |sed 's/9000\/800\///' |sed 's/9000\/899\///'` "w&lt;BR /&gt;ith" `ioscan -k |grep -n processor |wc -l` `cpuspeed&lt;BR /&gt;` "Mhz processors and" `memory` "of memory"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;where cpuspeed looks like this:&lt;BR /&gt;&lt;BR /&gt;HPUX=/stand/vmunix&lt;BR /&gt;&lt;BR /&gt;MHZ=$(echo itick_per_tick/D \&lt;BR /&gt;        | adb -k $HPUX /dev/kmem \&lt;BR /&gt;        | tail -1 \&lt;BR /&gt;        | awk '{print $2/10000}')&lt;BR /&gt;echo $MHZ&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and memory looks like this:&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" \&lt;BR /&gt;        | adb $HPUX /dev/kmem \&lt;BR /&gt;        | grep "${MYSYMBOL}: *." \&lt;BR /&gt;        | awk '{printf "%.0f MB\n",$2/256}')&lt;BR /&gt;echo $MYMEM&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Fri, 17 Dec 2004 14:44:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/a500-hardware-spec/m-p/3446238#M851792</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2004-12-17T14:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: A500 Hardware Spec</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/a500-hardware-spec/m-p/3446239#M851793</link>
      <description>Folks&lt;BR /&gt;&lt;BR /&gt;Thanks to you both for the v.quick response.  This was just what I needed :)&lt;BR /&gt;&lt;BR /&gt;Emma</description>
      <pubDate>Fri, 17 Dec 2004 14:48:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/a500-hardware-spec/m-p/3446239#M851793</guid>
      <dc:creator>Emma_8</dc:creator>
      <dc:date>2004-12-17T14:48:58Z</dc:date>
    </item>
  </channel>
</rss>

