<?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: computing kernel values in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644478#M44567</link>
    <description>You can get those by going into SAM, and then going to "Kernel Configuration" and then "Configurable Parameters".  A list of all parameters and their current values will come up.  You can also modify from here if need be.&lt;BR /&gt;&lt;BR /&gt;I've always found it a bit easier to let sam modify the kernel and rebuild it for me.</description>
    <pubDate>Mon, 14 Jan 2002 17:31:32 GMT</pubDate>
    <dc:creator>Patrick Wallek</dc:creator>
    <dc:date>2002-01-14T17:31:32Z</dc:date>
    <item>
      <title>computing kernel values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644477#M44566</link>
      <description>I use kmtune to get the kernel parameters values from command line. But it reports the formulae instead of current numerical values for those parameters that are computed using a formulae.&lt;BR /&gt;&lt;BR /&gt;Is there any other way to obtain those values.&lt;BR /&gt;&lt;BR /&gt;P.D: I tried to use a single AWK program but it is more difficult than it seems because kmtune reports kernel parameters sorted by its name.</description>
      <pubDate>Mon, 14 Jan 2002 17:24:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644477#M44566</guid>
      <dc:creator>Jdamian</dc:creator>
      <dc:date>2002-01-14T17:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: computing kernel values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644478#M44567</link>
      <description>You can get those by going into SAM, and then going to "Kernel Configuration" and then "Configurable Parameters".  A list of all parameters and their current values will come up.  You can also modify from here if need be.&lt;BR /&gt;&lt;BR /&gt;I've always found it a bit easier to let sam modify the kernel and rebuild it for me.</description>
      <pubDate>Mon, 14 Jan 2002 17:31:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644478#M44567</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2002-01-14T17:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: computing kernel values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644479#M44568</link>
      <description>I hate to say this but "SAM" gives you the values. Sysdef may also help.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Mon, 14 Jan 2002 17:32:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644479#M44568</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2002-01-14T17:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: computing kernel values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644480#M44569</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Cat /stand/system will show the kernel value that are changed from default.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Mon, 14 Jan 2002 17:35:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644480#M44569</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2002-01-14T17:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: computing kernel values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644481#M44570</link>
      <description>You could also do it via perl, and if you are interested, I'll give you an example.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Mon, 14 Jan 2002 17:36:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644481#M44570</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-01-14T17:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: computing kernel values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644482#M44571</link>
      <description>o add to above, use tune.h to take looat how those kernel parms being used. For example, to know what other kernel parms use the MAXUSERS do:&lt;BR /&gt;root:&amp;gt; grep MAXUSER /stand/build/tune.h&lt;BR /&gt;&lt;BR /&gt;#define MAXUSERS        32&lt;BR /&gt;#define NCLIST  (100+16*MAXUSERS)&lt;BR /&gt;#define NFILE   (16*(NPROC+16+MAXUSERS)/10+32+2*(NPTY+NSTRPTY+NSTRTEL))&lt;BR /&gt;#define NINODE  ((NPROC+16+MAXUSERS)+32+(2*NPTY))&lt;BR /&gt;#define NPROC   (20+8*MAXUSERS)&lt;BR /&gt;&lt;BR /&gt;g'd luck&lt;BR /&gt;t++</description>
      <pubDate>Mon, 14 Jan 2002 18:24:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644482#M44571</guid>
      <dc:creator>T. M. Louah</dc:creator>
      <dc:date>2002-01-14T18:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: computing kernel values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644483#M44572</link>
      <description>I noticed that I didn't explain my scenario: I must run a script in order to get system info.&lt;BR /&gt;&lt;BR /&gt;I know SAM reports numerical values but I didn't mention because SAM cannot be used in a script excepting the right lbin program is executed.&lt;BR /&gt;&lt;BR /&gt;Thanks to Sridhar Bhaskarla who gave me the right clue: the sysdef command</description>
      <pubDate>Tue, 15 Jan 2002 11:03:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644483#M44572</guid>
      <dc:creator>Jdamian</dc:creator>
      <dc:date>2002-01-15T11:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: computing kernel values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644484#M44573</link>
      <description>Hi Damien,&lt;BR /&gt;&lt;BR /&gt;Try :&lt;BR /&gt;&lt;BR /&gt;# sysdef&lt;BR /&gt;&lt;BR /&gt;It will reports only values.&lt;BR /&gt;&lt;BR /&gt;Magdi</description>
      <pubDate>Tue, 15 Jan 2002 11:59:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644484#M44573</guid>
      <dc:creator>Magdi KAMAL</dc:creator>
      <dc:date>2002-01-15T11:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: computing kernel values</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644485#M44574</link>
      <description>Hi&lt;BR /&gt;Small script to interogate output from sysdef.&lt;BR /&gt;------------cut here-----------&lt;BR /&gt;#!/bin/sh                                &lt;BR /&gt;###########################              &lt;BR /&gt;# Extract from sysdef output             &lt;BR /&gt;/etc/sysdef &amp;gt;&amp;gt;/tmp/sysdef.out            &lt;BR /&gt;cat /tmp/sysdef.out | awk '{print $1,$2}'&lt;BR /&gt;------------cut here-----------------&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Jan 2002 13:59:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/computing-kernel-values/m-p/2644485#M44574</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2002-01-15T13:59:53Z</dc:date>
    </item>
  </channel>
</rss>

