<?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 location in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/kernel-location/m-p/3599404#M19099</link>
    <description>&lt;BR /&gt;as stuart pointed out you have to run make modules_install first. It will install the compiled modules to /lib/modules/&lt;KERNEL-VERSION&gt; directory.&lt;BR /&gt;&lt;BR /&gt;The compiled kernel would be located under /usr/src/&lt;KERNEL-VERSION&gt;/arch/i386/boot&lt;BR /&gt;&lt;BR /&gt;copy the vmlinuz file to /boot directory and make sure it is having unique name so that it does not overwrite any existing files there.&lt;BR /&gt;&lt;BR /&gt;Then add grub or lilo entries to point to this new kernel and reboot the system and you should be able to see the new entry and boot with that.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Gopi&lt;/KERNEL-VERSION&gt;&lt;/KERNEL-VERSION&gt;</description>
    <pubDate>Tue, 09 Aug 2005 23:43:27 GMT</pubDate>
    <dc:creator>Gopi Sekar</dc:creator>
    <dc:date>2005-08-09T23:43:27Z</dc:date>
    <item>
      <title>kernel location</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel-location/m-p/3599400#M19095</link>
      <description>After I run make dep, bzimage, modules...&lt;BR /&gt;What file does it cerate?&lt;BR /&gt;And where do I move it in order for the lilo boot loader to execute it?</description>
      <pubDate>Tue, 09 Aug 2005 06:29:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel-location/m-p/3599400#M19095</guid>
      <dc:creator>Nobody's Hero</dc:creator>
      <dc:date>2005-08-09T06:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: kernel location</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel-location/m-p/3599401#M19096</link>
      <description>Running RH9.</description>
      <pubDate>Tue, 09 Aug 2005 06:31:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel-location/m-p/3599401#M19096</guid>
      <dc:creator>Nobody's Hero</dc:creator>
      <dc:date>2005-08-09T06:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: kernel location</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel-location/m-p/3599402#M19097</link>
      <description>If you're making a custom kernel, the last few steps you need are:&lt;BR /&gt;&lt;BR /&gt;make modules_install&lt;BR /&gt;&lt;BR /&gt;to install the modules from their various homes.  You also need to copy the 'arch/i386/bzImage' file to '/boot/vmlinuz' (or some variant) and make grub/lilo entries.&lt;BR /&gt;&lt;BR /&gt;If you are using lilo, you should be able to 'make bzlilo'.</description>
      <pubDate>Tue, 09 Aug 2005 06:44:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel-location/m-p/3599402#M19097</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-08-09T06:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: kernel location</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel-location/m-p/3599403#M19098</link>
      <description>*Never* overwrite your /boot/vmlinuz if that is your current, known-good kernel or a symlink to it!&lt;BR /&gt;&lt;BR /&gt;Instead, copy your arch/i386/boot/bzImage to /boot/vmlinuz-&lt;KERNEL_VERSION_NUMBER&gt; and configure your boot loader to have a new option for your new kernel. That way, you won't be stuck with a non-bootable machine if something went wrong with the kernel settings. &lt;BR /&gt;&lt;BR /&gt;(That problem is usually easy enough to fix with a "rescue" boot from RH9 CD-ROM, but it's easy to avoid the risk altogether.)&lt;BR /&gt;&lt;BR /&gt;After you've successfully booted the new kernel and found out that all the necessary drivers are working, you can remove the old kernel.&lt;BR /&gt;&lt;BR /&gt;If you're using LILO, the configuration file for it is /etc/lilo.conf. Remember that you must *always* run the "lilo" command after makin changes to the lilo.conf file or moved the kernel files, otherwise your changes won't take effect.&lt;BR /&gt;&lt;BR /&gt;If you're using GRUB (as I recall RH9 did by default), the configuration file is /boot/grub/grub.conf (RedHat style) or /boot/grub/menu.lst (GRUB default style).&lt;BR /&gt;With GRUB, you don't need to do anything special after changing the configuration file.&lt;/KERNEL_VERSION_NUMBER&gt;</description>
      <pubDate>Tue, 09 Aug 2005 08:05:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel-location/m-p/3599403#M19098</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2005-08-09T08:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: kernel location</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel-location/m-p/3599404#M19099</link>
      <description>&lt;BR /&gt;as stuart pointed out you have to run make modules_install first. It will install the compiled modules to /lib/modules/&lt;KERNEL-VERSION&gt; directory.&lt;BR /&gt;&lt;BR /&gt;The compiled kernel would be located under /usr/src/&lt;KERNEL-VERSION&gt;/arch/i386/boot&lt;BR /&gt;&lt;BR /&gt;copy the vmlinuz file to /boot directory and make sure it is having unique name so that it does not overwrite any existing files there.&lt;BR /&gt;&lt;BR /&gt;Then add grub or lilo entries to point to this new kernel and reboot the system and you should be able to see the new entry and boot with that.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Gopi&lt;/KERNEL-VERSION&gt;&lt;/KERNEL-VERSION&gt;</description>
      <pubDate>Tue, 09 Aug 2005 23:43:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel-location/m-p/3599404#M19099</guid>
      <dc:creator>Gopi Sekar</dc:creator>
      <dc:date>2005-08-09T23:43:27Z</dc:date>
    </item>
  </channel>
</rss>

