<?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: System information in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728796#M64900</link>
    <description>The number of CPUs can be found using &lt;BR /&gt;&lt;BR /&gt;ioscan -f | grep proce | wc -l&lt;BR /&gt;&lt;BR /&gt;The speed of the processors&lt;BR /&gt;&lt;BR /&gt;echo itick_per_usec/D | adb -k /stand/vmunix /dev/kmem&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 22 May 2002 04:28:09 GMT</pubDate>
    <dc:creator>Niel Greeff_1</dc:creator>
    <dc:date>2002-05-22T04:28:09Z</dc:date>
    <item>
      <title>System information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728795#M64899</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Does anyone what command to use to retrieve information like number of CPU, speed of CPU, type of CPU chips, amount of memory, and etc.. from the system. &lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;</description>
      <pubDate>Wed, 22 May 2002 04:21:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728795#M64899</guid>
      <dc:creator>YLTan</dc:creator>
      <dc:date>2002-05-22T04:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728796#M64900</link>
      <description>The number of CPUs can be found using &lt;BR /&gt;&lt;BR /&gt;ioscan -f | grep proce | wc -l&lt;BR /&gt;&lt;BR /&gt;The speed of the processors&lt;BR /&gt;&lt;BR /&gt;echo itick_per_usec/D | adb -k /stand/vmunix /dev/kmem&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 22 May 2002 04:28:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728796#M64900</guid>
      <dc:creator>Niel Greeff_1</dc:creator>
      <dc:date>2002-05-22T04:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728797#M64901</link>
      <description>processor-speed&lt;BR /&gt;echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;&lt;BR /&gt;no.of processors&lt;BR /&gt;echo runningprocs/D | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;&lt;BR /&gt;amount of memory&lt;BR /&gt;&lt;BR /&gt;echo 'phys_mem_pages/D'|adb -k /stand/vmunix /dev/kmem&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;cat /var/adm/syslog/syslog.log|grep Phy&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Also you can use &lt;BR /&gt;SAM---&amp;gt;performance monitor----&amp;gt;system prop&lt;BR /&gt;&lt;BR /&gt;to view all the information&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 22 May 2002 04:35:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728797#M64901</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2002-05-22T04:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728798#M64902</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Have a look at this link, at has an abundance of system gathering information, scripts and links.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0x1a6646ff9277d511abcd0090277a778c,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0x1a6646ff9277d511abcd0090277a778c,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Here are some extra commands to verify system resources: &lt;BR /&gt;for HP-UX 10x &lt;BR /&gt;example: &lt;BR /&gt;&lt;BR /&gt;echo physmem/D | adb -k /stand/vmunix /dev/kmem &lt;BR /&gt;physmem: &lt;BR /&gt;physmem: 24576 &lt;BR /&gt;&lt;BR /&gt;for HP-UX 11.x systems running on 32 bit architecture: &lt;BR /&gt;example: &lt;BR /&gt;&lt;BR /&gt;echo phys_mem_pages/D | adb /stand/vmunix /dev/kmem &lt;BR /&gt;phys_mem_pages: &lt;BR /&gt;phys_mem_pages: 24576 &lt;BR /&gt;&lt;BR /&gt;for HP-UX 11.x systems running on 64 bit architecture: &lt;BR /&gt;example: &lt;BR /&gt;&lt;BR /&gt;echo phys_mem_pages/D | adb64 -k /stand/vmunix /dev/mem &lt;BR /&gt;phys_mem_pages: &lt;BR /&gt;phys_mem_pages: 262144 &lt;BR /&gt;&lt;BR /&gt;The results of these commands are in memory pages, multiply by 4096 &lt;BR /&gt;to obtain the size in bytes. &lt;BR /&gt;&lt;BR /&gt;To determine the amount of lockable memory: &lt;BR /&gt;example: &lt;BR /&gt;&lt;BR /&gt;echo total_lockable_mem/D | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;total_lockable_mem: &lt;BR /&gt;total_lockable_mem: 185280 &lt;BR /&gt;&lt;BR /&gt;To determine the number of free swap pages : &lt;BR /&gt;example: &lt;BR /&gt;&lt;BR /&gt;echo swapspc_cnt/D | adb -k /stand/vmunix /dev/kmem &lt;BR /&gt;swapspc_cnt: &lt;BR /&gt;swapspc_cnt: 216447 &lt;BR /&gt;&lt;BR /&gt;This will display the number of free swap pages. &lt;BR /&gt;Multiply the number returned by 4096 for the number of free swap bytes. &lt;BR /&gt;&lt;BR /&gt;To determine the processor speed: &lt;BR /&gt;example: &lt;BR /&gt;echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;itick_per_usec: &lt;BR /&gt;itick_per_usec: 360 &lt;BR /&gt;&lt;BR /&gt;To determine the number of processors in use: &lt;BR /&gt;example: &lt;BR /&gt;echo "runningprocs/D" | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;runningprocs: &lt;BR /&gt;runningprocs: 2 &lt;BR /&gt;&lt;BR /&gt;To determine the number of pages of buffer cache ( 4Kb in size) &lt;BR /&gt;example: &lt;BR /&gt;echo bufpages/D | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;bufpages: &lt;BR /&gt;bufpages: 18848 &lt;BR /&gt;&lt;BR /&gt;To display kernel parameters using adb use the parameter name : &lt;BR /&gt;example: &lt;BR /&gt;echo nproc/D | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;nproc: &lt;BR /&gt;nproc: 276 &lt;BR /&gt;&lt;BR /&gt;To determine the kernel your booted from: &lt;BR /&gt;example: &lt;BR /&gt;10.x &lt;BR /&gt;echo 'boot_string/S' | adb /stand/vmunix /dev/mem &lt;BR /&gt;boot_string: &lt;BR /&gt;boot_string: disc(52.6.0;0)/stand/vmunix &lt;BR /&gt;&lt;BR /&gt;11.x &lt;BR /&gt;echo 'boot_string/S' | adb /stand/vmunix /dev/mem &lt;BR /&gt;boot_string: &lt;BR /&gt;boot_string: disk(0/0/2/0.6.0.0.0.0.0;0)/stand/vmunix &lt;BR /&gt;</description>
      <pubDate>Wed, 22 May 2002 04:35:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728798#M64902</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2002-05-22T04:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728799#M64903</link>
      <description>Hi,&lt;BR /&gt;Install the Support Tools.&lt;BR /&gt;Then you can find all this info by using "cstm".&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Tom</description>
      <pubDate>Wed, 22 May 2002 04:37:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728799#M64903</guid>
      <dc:creator>Tom Geudens</dc:creator>
      <dc:date>2002-05-22T04:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728800#M64904</link>
      <description>A lot of ways actually.. I'll just list them down and let you try 'em all..&lt;BR /&gt;# /opt/ignite/bin/print_manifest&lt;BR /&gt;==&amp;gt; General info about your system.&lt;BR /&gt;&lt;BR /&gt;Try the simplest ones ..&lt;BR /&gt;# dmesg&lt;BR /&gt;&lt;BR /&gt;then..&lt;BR /&gt;&lt;BR /&gt;Using cstm ..&lt;BR /&gt;# cstm&lt;BR /&gt;cstm&amp;gt;map&lt;BR /&gt;cstm&amp;gt;sel dev &lt;DEV-NUM-FR-1ST-COLUMN-OF-MAP-OUTPUT&gt;&lt;BR /&gt;cstm&amp;gt;info&lt;BR /&gt;cstm&amp;gt;infolog&lt;BR /&gt;&lt;BR /&gt;OR&lt;BR /&gt;&lt;BR /&gt;cstm&amp;gt;selall&lt;BR /&gt;cstm&amp;gt;info&lt;BR /&gt;cstm&amp;gt;infolog&lt;BR /&gt;&lt;BR /&gt;Using adb ..&lt;BR /&gt;processor speed&lt;BR /&gt;---------------&lt;BR /&gt;# echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem&lt;BR /&gt;number of  processors in use&lt;BR /&gt;----------------------------&lt;BR /&gt;# echo runningprocs/D | adb -k /stand/vmunix /dev/mem&lt;BR /&gt;amount of memory (10.x)&lt;BR /&gt;-----------------------&lt;BR /&gt;# echo "physmem/D" | adb -k /stand/vmunix /dev/kmem&lt;BR /&gt;physmem:        28672&lt;BR /&gt;# echo "28672 * 4 / 1024" | bc&lt;BR /&gt;112MB&lt;BR /&gt;amount of memory (11.x)&lt;BR /&gt;-----------------------&lt;BR /&gt;# echo "memory_installed_in_machine/D"| adb -k /stand/vmunix /dev/kmem&lt;BR /&gt;memory_installed_in_machine:    524288&lt;BR /&gt;# echo "524288*4/1024"|bc&lt;BR /&gt;2048MB&lt;BR /&gt;&lt;/DEV-NUM-FR-1ST-COLUMN-OF-MAP-OUTPUT&gt;</description>
      <pubDate>Wed, 22 May 2002 04:47:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728800#M64904</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-05-22T04:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728801#M64905</link>
      <description>Some of the information you can get using getconf-command.&lt;BR /&gt;&lt;BR /&gt;getconf MACHINE_MODEL&lt;BR /&gt;getconf CPU_CHIP_TYPE&lt;BR /&gt;getconf CPU_CHIP_TYPE&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-Raimo-&lt;BR /&gt;</description>
      <pubDate>Wed, 22 May 2002 08:43:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728801#M64905</guid>
      <dc:creator>Raimo Lesonen_1</dc:creator>
      <dc:date>2002-05-22T08:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728802#M64906</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;once you have installed the support tools ODE. you can use xstm as well as cstm this will you  a windows gui with the same results as cstm.&lt;BR /&gt;&lt;BR /&gt;JOhn.</description>
      <pubDate>Wed, 22 May 2002 09:17:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728802#M64906</guid>
      <dc:creator>John Carr_2</dc:creator>
      <dc:date>2002-05-22T09:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728803#M64907</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;also "top" command will quickly give you number of cpu's&lt;BR /&gt;&lt;BR /&gt;John.</description>
      <pubDate>Wed, 22 May 2002 09:18:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728803#M64907</guid>
      <dc:creator>John Carr_2</dc:creator>
      <dc:date>2002-05-22T09:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: System information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728804#M64908</link>
      <description>I posted this to another question.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Very good product to see everything about your systems. &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sysinfo-3.3.1/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sysinfo-3.3.1/&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 22 May 2002 12:51:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2728804#M64908</guid>
      <dc:creator>John Bolene</dc:creator>
      <dc:date>2002-05-22T12:51:26Z</dc:date>
    </item>
  </channel>
</rss>

