<?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: Tuning Kernel Parameters in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/tuning-kernel-parameters/m-p/3435851#M206567</link>
    <description>One of the following is fine (according to&lt;BR /&gt;me of course)&lt;BR /&gt;&lt;BR /&gt;1. (your soln.)&lt;BR /&gt;# kmtune -s ninode="((NPROC+16+MAXUSERS)+32+(2*NPTY))"&lt;BR /&gt;&lt;BR /&gt;2. My take.&lt;BR /&gt;&lt;BR /&gt;# kmtune -s ninode=2*NPTY+NPROC+16+MAXUSERS+32&lt;BR /&gt; OR&lt;BR /&gt;# kmtune -s ninode="(2*NPTY)+NPROC+16+MAXUSERS+32"&lt;BR /&gt;&lt;BR /&gt;See the re-ordered variables.&lt;BR /&gt;&lt;BR /&gt;HTH - vishwas</description>
    <pubDate>Fri, 03 Dec 2004 03:05:17 GMT</pubDate>
    <dc:creator>Vishwas Pai</dc:creator>
    <dc:date>2004-12-03T03:05:17Z</dc:date>
    <item>
      <title>Tuning Kernel Parameters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tuning-kernel-parameters/m-p/3435848#M206564</link>
      <description>Gd Day Forum,&lt;BR /&gt;&lt;BR /&gt;OS: HP-UX 11.00&lt;BR /&gt;&lt;BR /&gt;I would like to tune the kernel parameter,&lt;BR /&gt;&lt;BR /&gt;nkthread(((NPROC*7)/4)+16)to ((NPROC*7)+16)&lt;BR /&gt;ninode from ((NPROC+16+MAXUSERS)+32+(2*NPTY)) to (3*nproc+2048)&lt;BR /&gt;&lt;BR /&gt;Query: Correct me if I am wrong is the kmtune format stated below correct?&lt;BR /&gt;&lt;BR /&gt;kmtune -s nkthread=NPROC*7+16&lt;BR /&gt;kmtune -s ninode=3*nproc+2048&lt;BR /&gt;&lt;BR /&gt;Do we just remove the bracket will do?&lt;BR /&gt;&lt;BR /&gt;Need your advise?</description>
      <pubDate>Fri, 03 Dec 2004 02:33:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tuning-kernel-parameters/m-p/3435848#M206564</guid>
      <dc:creator>Cliff Lim Kok Hwee</dc:creator>
      <dc:date>2004-12-03T02:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Tuning Kernel Parameters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tuning-kernel-parameters/m-p/3435849#M206565</link>
      <description>&lt;BR /&gt;I think it is just fine, but if want to be&lt;BR /&gt;sure about the expression evaluvation you&lt;BR /&gt;can execute the commands in the following&lt;BR /&gt;manner.&lt;BR /&gt;&lt;BR /&gt;# kmtune -s nkthread="(NPROC*7)+16"&lt;BR /&gt;# kmtune -s ninode="(3*nproc)+2048"&lt;BR /&gt;&lt;BR /&gt;HTH -vishwas&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Dec 2004 02:41:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tuning-kernel-parameters/m-p/3435849#M206565</guid>
      <dc:creator>Vishwas Pai</dc:creator>
      <dc:date>2004-12-03T02:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Tuning Kernel Parameters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tuning-kernel-parameters/m-p/3435850#M206566</link>
      <description>Gd Day Guys,&lt;BR /&gt;&lt;BR /&gt;If for long expression eg&lt;BR /&gt;ninode:((NPROC+16+MAXUSERS)+32+(2*NPTY))&lt;BR /&gt;&lt;BR /&gt;Will kmtune -s ninode=NPROC+16+MAXUSERS+32+2*NPTY&lt;BR /&gt;&lt;BR /&gt;OR&lt;BR /&gt;&lt;BR /&gt;As suggested kmtune -s ninode="((NPROC+16+MAXUSERS)+32+(2*NPTY))"&lt;BR /&gt;&lt;BR /&gt;Need advise...thanks/cliff</description>
      <pubDate>Fri, 03 Dec 2004 02:59:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tuning-kernel-parameters/m-p/3435850#M206566</guid>
      <dc:creator>Cliff Lim Kok Hwee</dc:creator>
      <dc:date>2004-12-03T02:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Tuning Kernel Parameters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tuning-kernel-parameters/m-p/3435851#M206567</link>
      <description>One of the following is fine (according to&lt;BR /&gt;me of course)&lt;BR /&gt;&lt;BR /&gt;1. (your soln.)&lt;BR /&gt;# kmtune -s ninode="((NPROC+16+MAXUSERS)+32+(2*NPTY))"&lt;BR /&gt;&lt;BR /&gt;2. My take.&lt;BR /&gt;&lt;BR /&gt;# kmtune -s ninode=2*NPTY+NPROC+16+MAXUSERS+32&lt;BR /&gt; OR&lt;BR /&gt;# kmtune -s ninode="(2*NPTY)+NPROC+16+MAXUSERS+32"&lt;BR /&gt;&lt;BR /&gt;See the re-ordered variables.&lt;BR /&gt;&lt;BR /&gt;HTH - vishwas</description>
      <pubDate>Fri, 03 Dec 2004 03:05:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tuning-kernel-parameters/m-p/3435851#M206567</guid>
      <dc:creator>Vishwas Pai</dc:creator>
      <dc:date>2004-12-03T03:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Tuning Kernel Parameters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tuning-kernel-parameters/m-p/3435852#M206568</link>
      <description>Do not foget to run those command. If you want to update your server's kernel&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#cp system build&lt;BR /&gt;(build is a directory under /stand)&lt;BR /&gt;#mk_kernel -o /stand/vmunix&lt;BR /&gt;#kmupdate&lt;BR /&gt;#cd /&lt;BR /&gt;#shutdown -r y now&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Dec 2004 03:12:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tuning-kernel-parameters/m-p/3435852#M206568</guid>
      <dc:creator>Nguyen Anh Tien</dc:creator>
      <dc:date>2004-12-03T03:12:45Z</dc:date>
    </item>
  </channel>
</rss>

