<?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 HP Machine Specifics in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488013#M214433</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am an AIX admin, and have a few HP machines. I want to get the specifications of these HP machines. Can you tell me what are the commands to use so tha ti can fine out the specifications like:&lt;BR /&gt;1) Number of CPU, &lt;BR /&gt;2) CPU type&lt;BR /&gt;3) CPu speed&lt;BR /&gt;4) Paging space (and used %)&lt;BR /&gt;5) amt of memory (and used %)&lt;BR /&gt;6) Kernel type (32 bit or 64 bit)&lt;BR /&gt;7) Firmware version&lt;BR /&gt;8) If Raid is being used and if so waht level&lt;BR /&gt;etc etc&lt;BR /&gt;&lt;BR /&gt;in AIX i can get most of the info by using commands like lsconf, lsdev, lsattrr, lsps, lscfg, uname, etc.&lt;BR /&gt;&lt;BR /&gt;Are there any simillar commands i can use on HP? I got some info like model using the uname and model commands.&lt;BR /&gt;</description>
    <pubDate>Thu, 17 Feb 2005 11:06:35 GMT</pubDate>
    <dc:creator>nick_202</dc:creator>
    <dc:date>2005-02-17T11:06:35Z</dc:date>
    <item>
      <title>HP Machine Specifics</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488013#M214433</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am an AIX admin, and have a few HP machines. I want to get the specifications of these HP machines. Can you tell me what are the commands to use so tha ti can fine out the specifications like:&lt;BR /&gt;1) Number of CPU, &lt;BR /&gt;2) CPU type&lt;BR /&gt;3) CPu speed&lt;BR /&gt;4) Paging space (and used %)&lt;BR /&gt;5) amt of memory (and used %)&lt;BR /&gt;6) Kernel type (32 bit or 64 bit)&lt;BR /&gt;7) Firmware version&lt;BR /&gt;8) If Raid is being used and if so waht level&lt;BR /&gt;etc etc&lt;BR /&gt;&lt;BR /&gt;in AIX i can get most of the info by using commands like lsconf, lsdev, lsattrr, lsps, lscfg, uname, etc.&lt;BR /&gt;&lt;BR /&gt;Are there any simillar commands i can use on HP? I got some info like model using the uname and model commands.&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Feb 2005 11:06:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488013#M214433</guid>
      <dc:creator>nick_202</dc:creator>
      <dc:date>2005-02-17T11:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: HP Machine Specifics</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488014#M214434</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;1&lt;BR /&gt;# ioscan -fnkC processor&lt;BR /&gt;&lt;BR /&gt;2&lt;BR /&gt;# model&lt;BR /&gt;9000/800/L2000-44&lt;BR /&gt;# grep L2000 /usr/sam/lib/mo/sched.models&lt;BR /&gt;&lt;BR /&gt;3&lt;BR /&gt;# echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem&lt;BR /&gt;&lt;BR /&gt;6&lt;BR /&gt;# file /stand/vmunix&lt;BR /&gt;&lt;BR /&gt;7&lt;BR /&gt;# grep -i version /var/tombstones/ts99&lt;BR /&gt;&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Thu, 17 Feb 2005 11:14:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488014#M214434</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-02-17T11:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: HP Machine Specifics</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488015#M214435</link>
      <description>Nick,&lt;BR /&gt;&lt;BR /&gt;1)  ioscan  -k |grep -n processor |wc -l&lt;BR /&gt;&lt;BR /&gt;2)  maybe through STM&lt;BR /&gt;&lt;BR /&gt;3)  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;&lt;BR /&gt;4)  swapinfo -tam&lt;BR /&gt;&lt;BR /&gt;5)  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;6)  file /stand/vmunix&lt;BR /&gt;&lt;BR /&gt;7)  maybe STM&lt;BR /&gt;&lt;BR /&gt;8)  depends on the array&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 17 Feb 2005 11:15:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488015#M214435</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2005-02-17T11:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: HP Machine Specifics</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488016#M214436</link>
      <description>1. /usr/sbin/ioscan -fnCprocessor&lt;BR /&gt;2. &amp;amp; 3. echo "selclass qualifier cpu;info;wait;infolog"|cstm&lt;BR /&gt;4. vmstat, swapinfo&lt;BR /&gt;5. glance -m (you need to have glance)&lt;BR /&gt;   Else vmstat to know free mem. grep -i physical /var/adm/syslog/syslog.log - total ram on machine&lt;BR /&gt;6. file /stand/vmunix or getconf KERNEL_BITS&lt;BR /&gt;7. same as 2 and 3 (Firmware version of what)&lt;BR /&gt;8. SAM - disk management. Or arm commands.&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Thu, 17 Feb 2005 11:17:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488016#M214436</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-02-17T11:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: HP Machine Specifics</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488017#M214437</link>
      <description>1) "ioscan -fn" gives info on all connected hardware. "top" command has a line near the top for each CPU, "glance" has a CPU report screen&lt;BR /&gt;2) See "man stm" it's not very friendly, I'm afraid.&lt;BR /&gt;3) stm again, unfortunately&lt;BR /&gt;4) swapinfo (glance may also be useful, depending what you want)&lt;BR /&gt;5) swapinfo (glance may also be useful, depending what you want)&lt;BR /&gt;6)"file /stand/vmunix" The following output shows that it's a 64 bit kernel:&lt;BR /&gt;/stand/vmunix:  ELF-64 executable object file - PA-RISC 2.0 (LP64)&lt;BR /&gt;&lt;BR /&gt;I'm afraid I'll have to say "pass" on 7 &amp;amp; 8&lt;BR /&gt;I look forward to seeing the answers myself!</description>
      <pubDate>Thu, 17 Feb 2005 11:27:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488017#M214437</guid>
      <dc:creator>Gordon  Morrison</dc:creator>
      <dc:date>2005-02-17T11:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: HP Machine Specifics</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488018#M214438</link>
      <description>"/opt/ignite/bin/print_manifest" for a good overview&lt;BR /&gt;&lt;BR /&gt;"getconf HW_CPU_SUPP_BITS" for the running kernel&lt;BR /&gt;&lt;BR /&gt;cpu speed is usually enconded in the output of &lt;BR /&gt;"model"&lt;BR /&gt;&lt;BR /&gt;Firmware is only available through the GSP (guardian service processor), I think.&lt;BR /&gt;&lt;BR /&gt;RAID? - software raid?&lt;BR /&gt;lvdisplay -v /dev/vg&lt;NAME&gt;/lvol* | grep -i mirror&lt;BR /&gt;&lt;BR /&gt;also a lot of hardware information is available in the STM, called by 'mstm'&lt;/NAME&gt;</description>
      <pubDate>Thu, 17 Feb 2005 11:38:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-machine-specifics/m-p/3488018#M214438</guid>
      <dc:creator>Florian Heigl (new acc)</dc:creator>
      <dc:date>2005-02-17T11:38:17Z</dc:date>
    </item>
  </channel>
</rss>

