<?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 cpu clock speed in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022921#M130941</link>
    <description>Hi,&lt;BR /&gt;Is there a way of determining the cpu clock speed via the command line.&lt;BR /&gt;&lt;BR /&gt;many thx</description>
    <pubDate>Mon, 14 Jul 2003 12:58:46 GMT</pubDate>
    <dc:creator>David Lewis_1</dc:creator>
    <dc:date>2003-07-14T12:58:46Z</dc:date>
    <item>
      <title>cpu clock speed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022921#M130941</link>
      <description>Hi,&lt;BR /&gt;Is there a way of determining the cpu clock speed via the command line.&lt;BR /&gt;&lt;BR /&gt;many thx</description>
      <pubDate>Mon, 14 Jul 2003 12:58:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022921#M130941</guid>
      <dc:creator>David Lewis_1</dc:creator>
      <dc:date>2003-07-14T12:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: cpu clock speed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022922#M130942</link>
      <description>yes... use this:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;BOLD="`tput smso`"&lt;BR /&gt;NORMAL="`tput rmso`"&lt;BR /&gt;cpu=$(echo itick_per_tick/D | adb /stand/vmunix /dev/kmem | sed -n '2p' | awk '{print $2}' | sed 's/0000$//g')&lt;BR /&gt;cpu_num=$(grep -i proc /var/adm/syslog/syslog.log | wc -l)&lt;BR /&gt;echo "`hostname` has ${BOLD}$cpu_num${NORMAL} processors at ${BOLD}$cpu${NORMAL} Mhz"</description>
      <pubDate>Mon, 14 Jul 2003 13:01:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022922#M130942</guid>
      <dc:creator>John Meissner</dc:creator>
      <dc:date>2003-07-14T13:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: cpu clock speed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022923#M130943</link>
      <description>to get the speed of the CPU:&lt;BR /&gt;echo "itick_per_usec/D" | adb /stand/vmunix /dev/kmem</description>
      <pubDate>Mon, 14 Jul 2003 13:03:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022923#M130943</guid>
      <dc:creator>Jannik</dc:creator>
      <dc:date>2003-07-14T13:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: cpu clock speed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022924#M130944</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Have a look at the following thread :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x662eeea29889d611abdb0090277a778c,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x662eeea29889d611abdb0090277a778c,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Piyush</description>
      <pubDate>Mon, 14 Jul 2003 13:04:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022924#M130944</guid>
      <dc:creator>PIYUSH D. PATEL</dc:creator>
      <dc:date>2003-07-14T13:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: cpu clock speed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022925#M130945</link>
      <description>I use the following little script:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HPUX=/stand/vmunix&lt;BR /&gt;&lt;BR /&gt;MHZ=$(echo itick_per_tick/D         | adb -k $HPUX /dev/kmem         | tail -1         | awk '{print $2/10000}')&lt;BR /&gt;echo $MHZ&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jul 2003 13:05:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022925#M130945</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-07-14T13:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: cpu clock speed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022926#M130946</link>
      <description>Yes - I use this script called hpmem.&lt;BR /&gt;&lt;BR /&gt;It gives you some additional settings as well....&lt;BR /&gt;&lt;BR /&gt;Here's a sample output:&lt;BR /&gt;&lt;BR /&gt;HP-UX system3 B.11.11 U 9000/800 2504392627 unlimited-user license&lt;BR /&gt;CPU Count: 6&lt;BR /&gt;CPU Speed: 750 MHz&lt;BR /&gt;CPU HW Support: 64-bit&lt;BR /&gt;Kernel Support: 64-bit&lt;BR /&gt;RAM Size: 10080 MB&lt;BR /&gt;bufpages: 1008 MB&lt;BR /&gt;maxuprc: 800&lt;BR /&gt;maxvgs: 80&lt;BR /&gt;maxfiles: 2048&lt;BR /&gt;max_thread_proc: 256&lt;BR /&gt;nfile: 189100&lt;BR /&gt;nflock: 1200&lt;BR /&gt;nproc: 2560&lt;BR /&gt;ninode: 2984&lt;BR /&gt;shmmax: 1073741824&lt;BR /&gt;shmmni: 256&lt;BR /&gt;dbc_max_pct: 10&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jul 2003 13:29:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022926#M130946</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2003-07-14T13:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: cpu clock speed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022927#M130947</link>
      <description>maybe you can just use the "model" command, usually, the last 2 digital of the output indicates the CPU speed. e.g&lt;BR /&gt;&lt;BR /&gt;9000/800/L2000-44 is 440MHZ&lt;BR /&gt;9000/800/L1000-5X is 540MHZ</description>
      <pubDate>Mon, 14 Jul 2003 14:23:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022927#M130947</guid>
      <dc:creator>Gary Yu</dc:creator>
      <dc:date>2003-07-14T14:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: cpu clock speed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022928#M130948</link>
      <description>Hello!&lt;BR /&gt;&lt;BR /&gt;Check this:&lt;BR /&gt;echo "itick_per_tick/D" | adb -k /stand/vmunix /dev/kmem | tail -1&lt;BR /&gt;&lt;BR /&gt;Caesar</description>
      <pubDate>Mon, 14 Jul 2003 19:29:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022928#M130948</guid>
      <dc:creator>Caesar_3</dc:creator>
      <dc:date>2003-07-14T19:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: cpu clock speed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022929#M130949</link>
      <description>The kernel file must be set correctly, normall it is /stand/vmunix!&lt;BR /&gt;You can get the cpu clock speed in MHz by:&lt;BR /&gt;#echo itick_per_usec /D |adb -k /stand/vmunix /dev/kmem|tail -1|awk '{print $2}'&lt;BR /&gt;540 (example)&lt;BR /&gt;&lt;BR /&gt;-ux</description>
      <pubDate>Tue, 15 Jul 2003 00:38:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-clock-speed/m-p/3022929#M130949</guid>
      <dc:creator>Fragon</dc:creator>
      <dc:date>2003-07-15T00:38:26Z</dc:date>
    </item>
  </channel>
</rss>

