<?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 Kernel changes in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-changes/m-p/2592745#M33086</link>
    <description>How do i make kernel changes manually on the command line without using sam.&lt;BR /&gt;&lt;BR /&gt;Then which file do i edit to change the kernel parameters.&lt;BR /&gt;&lt;BR /&gt;Points will be assigned</description>
    <pubDate>Wed, 10 Oct 2001 18:47:55 GMT</pubDate>
    <dc:creator>Sprint Unix Team</dc:creator>
    <dc:date>2001-10-10T18:47:55Z</dc:date>
    <item>
      <title>Kernel changes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-changes/m-p/2592745#M33086</link>
      <description>How do i make kernel changes manually on the command line without using sam.&lt;BR /&gt;&lt;BR /&gt;Then which file do i edit to change the kernel parameters.&lt;BR /&gt;&lt;BR /&gt;Points will be assigned</description>
      <pubDate>Wed, 10 Oct 2001 18:47:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-changes/m-p/2592745#M33086</guid>
      <dc:creator>Sprint Unix Team</dc:creator>
      <dc:date>2001-10-10T18:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel changes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-changes/m-p/2592746#M33087</link>
      <description>the 10.20 processworks 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;KBRC00001369 &lt;BR /&gt;Rebuilding the kernel at 10.x /11.0 &lt;BR /&gt;Rebuilding the kernel at 10.x /11.0 &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>Wed, 10 Oct 2001 18:57:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-changes/m-p/2592746#M33087</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2001-10-10T18:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel changes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-changes/m-p/2592747#M33088</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;#cd /stand/build &lt;BR /&gt;#/usr/lbin/sysadm/system_prep -v -s system &lt;BR /&gt;Edit the system file for modifications.&lt;BR /&gt;#/usr/sbin/mk_kernel -s ./system &lt;BR /&gt;&lt;BR /&gt;Backup old kernel and system files&lt;BR /&gt;#mv /stand/system /stand/system.prev  &lt;BR /&gt;#mv /stand/vmunix /stand/vmunix.prev&lt;BR /&gt;&lt;BR /&gt;#mv /stand/build/system /stand/system &lt;BR /&gt;#kmupdate (kmupdate will move new kernel in right place)&lt;BR /&gt;&lt;BR /&gt;#shutdown -ry 0 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;Prashant.</description>
      <pubDate>Wed, 10 Oct 2001 18:57:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-changes/m-p/2592747#M33088</guid>
      <dc:creator>Deshpande Prashant</dc:creator>
      <dc:date>2001-10-10T18:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel changes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-changes/m-p/2592748#M33089</link>
      <description>Sprint Unix Team,&lt;BR /&gt;&lt;BR /&gt;kmupdate is not available on 10.20.&lt;BR /&gt;&lt;BR /&gt;This method is applicable to both 10.20 and 11.00. &lt;BR /&gt;&lt;BR /&gt;1.mk_kernel on 11.0 calls kmupdate.&lt;BR /&gt;2.mk_kernel on 10.20 takes care of moving vmunix immediately.&lt;BR /&gt;&lt;BR /&gt;#cp /stand/system /stand/system.prev&lt;BR /&gt;#/usr/lbin/sysadm/system_prep -s /stand/system&lt;BR /&gt;#mk_kernel -o /stand/vmunix&lt;BR /&gt;#shutdown -r now&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Wed, 10 Oct 2001 19:09:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-changes/m-p/2592748#M33089</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-10-10T19:09:18Z</dc:date>
    </item>
  </channel>
</rss>

