<?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: Compiling Kernel - steps/procedure in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/compiling-kernel-steps-procedure/m-p/3094062#M7281</link>
    <description>Also the README that comes with the Kernel sources pretty much spells out the process for you.</description>
    <pubDate>Wed, 15 Oct 2003 12:44:24 GMT</pubDate>
    <dc:creator>Martin P.J. Zinser</dc:creator>
    <dc:date>2003-10-15T12:44:24Z</dc:date>
    <item>
      <title>Compiling Kernel - steps/procedure</title>
      <link>https://community.hpe.com/t5/operating-system-linux/compiling-kernel-steps-procedure/m-p/3094059#M7278</link>
      <description>Kindly tell me what is the exact procedure for compiling the kernel in Redhat.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Jagadesh</description>
      <pubDate>Wed, 15 Oct 2003 10:08:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/compiling-kernel-steps-procedure/m-p/3094059#M7278</guid>
      <dc:creator>Jagadesh</dc:creator>
      <dc:date>2003-10-15T10:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Compiling Kernel - steps/procedure</title>
      <link>https://community.hpe.com/t5/operating-system-linux/compiling-kernel-steps-procedure/m-p/3094060#M7279</link>
      <description>Ok, I cant do this red hat specific because I haven't used red hat since 4.2 and it has changed a lot since then.  I believe red hat make all their own mods but this is the procedure.  I'll also assume you know which kernel options you want because that means you can get to use a GUI&lt;BR /&gt;&lt;BR /&gt;cd /usr/src/linux (or wherever the red hat source is)&lt;BR /&gt; &lt;BR /&gt;export DISPLAY=:0&lt;BR /&gt; &lt;BR /&gt;make xconfig&lt;BR /&gt; &lt;BR /&gt;enable all the things you want enabled&lt;BR /&gt; &lt;BR /&gt;save and exit&lt;BR /&gt; &lt;BR /&gt;make dep&lt;BR /&gt; &lt;BR /&gt;make bzImage&lt;BR /&gt; &lt;BR /&gt;make modules&lt;BR /&gt; &lt;BR /&gt;make modules_install&lt;BR /&gt; &lt;BR /&gt;cp /boot/vmlinuz /boot/vmlinuz.prev (you may need to adjust this name for red hat)&lt;BR /&gt; &lt;BR /&gt;cp /boot/system.map /boot/system.map.prev&lt;BR /&gt; &lt;BR /&gt;cp System.map /boot&lt;BR /&gt; &lt;BR /&gt;cp arch/i386/boot/bzImage /boot/vmlinuz&lt;BR /&gt; &lt;BR /&gt;edit /etc/lilo.conf or grub.conf&lt;BR /&gt; &lt;BR /&gt;add an entry for booting vmlinuz.prev and your new kernel&lt;BR /&gt; &lt;BR /&gt;run lilo (if using it)&lt;BR /&gt; &lt;BR /&gt;cross fingers&lt;BR /&gt; &lt;BR /&gt;re-boot.&lt;BR /&gt; &lt;BR /&gt;If you want to keep all your existing configurations instead of starting from scratch then instean of "make xconfig" do a "make oldconfig" It's not very pretty but defaults to your exisiting config.&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;</description>
      <pubDate>Wed, 15 Oct 2003 10:21:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/compiling-kernel-steps-procedure/m-p/3094060#M7279</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2003-10-15T10:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Compiling Kernel - steps/procedure</title>
      <link>https://community.hpe.com/t5/operating-system-linux/compiling-kernel-steps-procedure/m-p/3094061#M7280</link>
      <description>Check out the official RedHat document:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.europe.redhat.com/documentation/HOWTO/Kernel-HOWTO-2.php3" target="_blank"&gt;http://www.europe.redhat.com/documentation/HOWTO/Kernel-HOWTO-2.php3&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sergejs</description>
      <pubDate>Wed, 15 Oct 2003 10:41:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/compiling-kernel-steps-procedure/m-p/3094061#M7280</guid>
      <dc:creator>Sergejs Svitnevs</dc:creator>
      <dc:date>2003-10-15T10:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Compiling Kernel - steps/procedure</title>
      <link>https://community.hpe.com/t5/operating-system-linux/compiling-kernel-steps-procedure/m-p/3094062#M7281</link>
      <description>Also the README that comes with the Kernel sources pretty much spells out the process for you.</description>
      <pubDate>Wed, 15 Oct 2003 12:44:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/compiling-kernel-steps-procedure/m-p/3094062#M7281</guid>
      <dc:creator>Martin P.J. Zinser</dc:creator>
      <dc:date>2003-10-15T12:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: Compiling Kernel - steps/procedure</title>
      <link>https://community.hpe.com/t5/operating-system-linux/compiling-kernel-steps-procedure/m-p/3094063#M7282</link>
      <description>cd &lt;PATH&gt;/src&lt;BR /&gt;&lt;BR /&gt;make menuconfig&lt;BR /&gt;save the config&lt;BR /&gt;make bzImage&lt;BR /&gt;make modules&lt;BR /&gt;make modules_install&lt;BR /&gt;mv kernel to /boot/&lt;BR /&gt;edit grub.conf  &lt;BR /&gt;reboot&lt;/PATH&gt;</description>
      <pubDate>Wed, 15 Oct 2003 12:50:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/compiling-kernel-steps-procedure/m-p/3094063#M7282</guid>
      <dc:creator>K.C. Chan</dc:creator>
      <dc:date>2003-10-15T12:50:37Z</dc:date>
    </item>
  </channel>
</rss>

