<?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: Kernel configuration problem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-configuration-problem/m-p/2584930#M32205</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you want to set the defaults back to what&lt;BR /&gt;they to start with you need to get a copy&lt;BR /&gt;of the default parameters to start with. &lt;BR /&gt;These can be found in a file called&lt;BR /&gt;/var/sam/boot.config at around line 1890&lt;BR /&gt;which starts 'tag Tunables:'&lt;BR /&gt;&lt;BR /&gt;Use this in conjunction with procedure that&lt;BR /&gt;Richard has suggested and this should solve &lt;BR /&gt;your problem.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;-Michael&lt;BR /&gt;</description>
    <pubDate>Wed, 26 Sep 2001 03:24:40 GMT</pubDate>
    <dc:creator>Michael Tully</dc:creator>
    <dc:date>2001-09-26T03:24:40Z</dc:date>
    <item>
      <title>Kernel configuration problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-configuration-problem/m-p/2584927#M32202</link>
      <description>I am a newbie with a L2000 running HPUX 11. I need to get the Kernel parameters set back to default and save the current settings (For possible later use) When using SAM and trying load a different file in actions/templates/load template file I select a different file like vmunix.prev it gives me a internal errors message with the master files and I need to restart SAM. How can I create a new kernel file with the defaults and save the current one? Thank you in advance for any help. Lance</description>
      <pubDate>Tue, 25 Sep 2001 21:56:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-configuration-problem/m-p/2584927#M32202</guid>
      <dc:creator>lance corbin</dc:creator>
      <dc:date>2001-09-25T21:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel configuration problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-configuration-problem/m-p/2584928#M32203</link>
      <description>Hello here you go &lt;BR /&gt;&lt;BR /&gt;PROBLEM&lt;BR /&gt; How do I manually rebuild a kernel at 10.x? 11.0?&lt;BR /&gt;RESOLUTION&lt;BR /&gt;The simplest way to configure a new kernel under HP-UX 10.x / 11  is with SAM,&lt;BR /&gt;the System Administration Manager.  However there are situations which arise&lt;BR /&gt;that  may require a kernel be built manually from the command line. Although the&lt;BR /&gt;steps to  performs this task are similar for 10.x and 11.0, starting with&lt;BR /&gt;version 11.0  new utilities are provided to simplify the process of configuring&lt;BR /&gt;kernel parameters and system drivers.&lt;BR /&gt;&lt;BR /&gt;10.X  Manual Kernel Configuration &lt;BR /&gt;$ cd /stand/build      #change to the kernel build directory&lt;BR /&gt;&lt;BR /&gt;$ /usr/lbin/sysadm/system_prep -s system   # creates an editable kernel&lt;BR /&gt;                                                   file&lt;BR /&gt;$ vi system   #make necessary changes to the kernel file&lt;BR /&gt;&lt;BR /&gt;$ /usr/sbin/mk_kernel -s ./system   # creates the test kernel&lt;BR /&gt;                                             /stand/build/vmunix_test&lt;BR /&gt;$ mv /stand/system /stand/system.prev&lt;BR /&gt;$ mv /stand/vmunix /stand/vmunix.prev   #preserve prior kernel files&lt;BR /&gt;&lt;BR /&gt;$ mv /stand/build/system /stand/system&lt;BR /&gt;$ mv /stand/build/vmunix_test /stand/vmunix  # move new kernel files&lt;BR /&gt;                                                   into place&lt;BR /&gt;$ shutdown -ry 0   # reboot the system to test the new kernel&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;11.0 Manual Kernel Configuration &lt;BR /&gt;$ cd /stand/build&lt;BR /&gt;$ /usr/lbin/sysadm/system_prep -v -s  system &lt;BR /&gt;&lt;BR /&gt;kmtune parm_name=value  | kmtune parm_name+value&lt;BR /&gt;kmsystem -c y driver_name  # these utilities modify the system&lt;BR /&gt;                                 file at 11.0&lt;BR /&gt;$ /usr/sbin/mk_kernel -s ./system&lt;BR /&gt;&lt;BR /&gt;$ mv /stand/system /stand/system.prev    #new for dynamically&lt;BR /&gt;                                              linked modules at 11.0&lt;BR /&gt;$ mv /stand/build/system /stand/system&lt;BR /&gt;$ kmupdate   # kmupdate automates moving&lt;BR /&gt;                   the kernel files into the&lt;BR /&gt;                   proper directory&lt;BR /&gt;&lt;BR /&gt;$ shutdown -ry 0 &lt;BR /&gt;</description>
      <pubDate>Tue, 25 Sep 2001 21:59:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-configuration-problem/m-p/2584928#M32203</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2001-09-25T21:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel configuration problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-configuration-problem/m-p/2584929#M32204</link>
      <description>ohh yeah&lt;BR /&gt;&lt;BR /&gt;In the version 11.00 the utility kmtune is used to&lt;BR /&gt;specify the new parameter values.  I got this doc from HP and they and they told me that the 10.20 process&lt;BR /&gt;works just fine in the 11.00 environment.  The kmtune utility was added to&lt;BR /&gt;11.00 just to make things easier.&lt;BR /&gt;So, either process listed in the document works for 11.00.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Richard</description>
      <pubDate>Tue, 25 Sep 2001 22:05:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-configuration-problem/m-p/2584929#M32204</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2001-09-25T22:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel configuration problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-configuration-problem/m-p/2584930#M32205</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you want to set the defaults back to what&lt;BR /&gt;they to start with you need to get a copy&lt;BR /&gt;of the default parameters to start with. &lt;BR /&gt;These can be found in a file called&lt;BR /&gt;/var/sam/boot.config at around line 1890&lt;BR /&gt;which starts 'tag Tunables:'&lt;BR /&gt;&lt;BR /&gt;Use this in conjunction with procedure that&lt;BR /&gt;Richard has suggested and this should solve &lt;BR /&gt;your problem.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;-Michael&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Sep 2001 03:24:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-configuration-problem/m-p/2584930#M32205</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2001-09-26T03:24:40Z</dc:date>
    </item>
  </channel>
</rss>

