- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: kernel location
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2005 11:29 PM
08-08-2005 11:29 PM
What file does it cerate?
And where do I move it in order for the lilo boot loader to execute it?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2005 11:31 PM
08-08-2005 11:31 PM
Re: kernel location
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2005 11:44 PM
08-08-2005 11:44 PM
Solutionmake modules_install
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.
If you are using lilo, you should be able to 'make bzlilo'.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2005 01:05 AM
08-09-2005 01:05 AM
Re: kernel location
Instead, copy your arch/i386/boot/bzImage to /boot/vmlinuz-
(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.)
After you've successfully booted the new kernel and found out that all the necessary drivers are working, you can remove the old kernel.
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.
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).
With GRUB, you don't need to do anything special after changing the configuration file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2005 04:43 PM
08-09-2005 04:43 PM
Re: kernel location
as stuart pointed out you have to run make modules_install first. It will install the compiled modules to /lib/modules/
The compiled kernel would be located under /usr/src/
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.
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.
Regards,
Gopi