<?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: RISC Levels in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466490#M15803</link>
    <description>If you have Online diagnostics installed on your system, check the file /var/tombstones/ts99, search for PA.</description>
    <pubDate>Wed, 22 Nov 2000 14:03:19 GMT</pubDate>
    <dc:creator>CHRIS_ANORUO</dc:creator>
    <dc:date>2000-11-22T14:03:19Z</dc:date>
    <item>
      <title>RISC Levels</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466484#M15797</link>
      <description>I normally check either the /opt/langtools/lib/sched.models or /usr/lib/sched.models files to check for the MODEL string so as to get the relevent RISC Level of the processors, but some of my servers do not have the model string within these files.&lt;BR /&gt;&lt;BR /&gt;Is there another way of determining the RISC Level of a processor ??</description>
      <pubDate>Wed, 22 Nov 2000 07:26:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466484#M15797</guid>
      <dc:creator>KeithDaley</dc:creator>
      <dc:date>2000-11-22T07:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: RISC Levels</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466485#M15798</link>
      <description>Hi Keith,&lt;BR /&gt;&lt;BR /&gt;The command 'model' should report the right model. Is this not the case ? I've checked on all our systems, running 10.20 or 11.0 and it seems ok.&lt;BR /&gt;&lt;BR /&gt;Dan&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Nov 2000 07:48:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466485#M15798</guid>
      <dc:creator>Dan Hetzel</dc:creator>
      <dc:date>2000-11-22T07:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: RISC Levels</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466486#M15799</link>
      <description>Hi Keith,&lt;BR /&gt;&lt;BR /&gt;Sorry, but I misunderstood your question and replied too fast. &lt;BR /&gt;&lt;BR /&gt;You're right, the string returned by model cannot be found in the sched.models file on the L2000.&lt;BR /&gt;&lt;BR /&gt;I've checked with stm but didn't find any info about the risc level.&lt;BR /&gt;&lt;BR /&gt;Dan&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Nov 2000 07:57:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466486#M15799</guid>
      <dc:creator>Dan Hetzel</dc:creator>
      <dc:date>2000-11-22T07:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: RISC Levels</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466487#M15800</link>
      <description>Get sysinfo from:&lt;BR /&gt;&lt;A href="http://gatekeep.cs.utah.edu/hppd/hpux/Sysadmin/sysinfo-3.3.1/" target="_blank"&gt;http://gatekeep.cs.utah.edu/hppd/hpux/Sysadmin/sysinfo-3.3.1/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It will show you the CPU type eg. PA-RISC_2.0&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Nov 2000 08:24:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466487#M15800</guid>
      <dc:creator>Tommy Palo</dc:creator>
      <dc:date>2000-11-22T08:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: RISC Levels</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466488#M15801</link>
      <description>i checked sysinfo and contructed this&lt;BR /&gt;&lt;BR /&gt;grep $(getconf _SC_CPU_VERSION |awk '{printf("0x%X\n",$0)}') /usr/include/sys/unistd.h</description>
      <pubDate>Wed, 22 Nov 2000 09:21:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466488#M15801</guid>
      <dc:creator>Rainer_1</dc:creator>
      <dc:date>2000-11-22T09:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: RISC Levels</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466489#M15802</link>
      <description>Here's another script for this too I found somewhere:&lt;BR /&gt;&lt;BR /&gt;#!/usr/local/bin/tclsh&lt;BR /&gt;&lt;BR /&gt;set cpu [format 0x%x [exec getconf CPU_VERSION]]&lt;BR /&gt;set fd [open /usr/include/sys/unistd.h r]&lt;BR /&gt;while { [gets $fd line] &amp;gt;= 0 } {&lt;BR /&gt;  if { [regexp 0x2 $line] &amp;amp;&amp;amp; [regexp RISC $line] } {&lt;BR /&gt;    if { [lindex $line 3] == $cpu } {&lt;BR /&gt;      puts [lindex $line 6]&lt;BR /&gt;    }&lt;BR /&gt;  }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;regards,</description>
      <pubDate>Wed, 22 Nov 2000 13:31:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466489#M15802</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2000-11-22T13:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: RISC Levels</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466490#M15803</link>
      <description>If you have Online diagnostics installed on your system, check the file /var/tombstones/ts99, search for PA.</description>
      <pubDate>Wed, 22 Nov 2000 14:03:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466490#M15803</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2000-11-22T14:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: RISC Levels</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466491#M15804</link>
      <description>Thanks to all of you that have responded.&lt;BR /&gt;&lt;BR /&gt;I found RAINER's suggestion the best.&lt;BR /&gt;&lt;BR /&gt;Thanks, Keith.</description>
      <pubDate>Wed, 22 Nov 2000 14:19:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/risc-levels/m-p/2466491#M15804</guid>
      <dc:creator>KeithDaley</dc:creator>
      <dc:date>2000-11-22T14:19:22Z</dc:date>
    </item>
  </channel>
</rss>

