- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Compiling Kernel - steps/procedure
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
10-15-2003 03:08 AM
10-15-2003 03:08 AM
Compiling Kernel - steps/procedure
Thanks
Jagadesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2003 03:21 AM
10-15-2003 03:21 AM
Re: Compiling Kernel - steps/procedure
cd /usr/src/linux (or wherever the red hat source is)
export DISPLAY=:0
make xconfig
enable all the things you want enabled
save and exit
make dep
make bzImage
make modules
make modules_install
cp /boot/vmlinuz /boot/vmlinuz.prev (you may need to adjust this name for red hat)
cp /boot/system.map /boot/system.map.prev
cp System.map /boot
cp arch/i386/boot/bzImage /boot/vmlinuz
edit /etc/lilo.conf or grub.conf
add an entry for booting vmlinuz.prev and your new kernel
run lilo (if using it)
cross fingers
re-boot.
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2003 03:41 AM
10-15-2003 03:41 AM
Re: Compiling Kernel - steps/procedure
http://www.europe.redhat.com/documentation/HOWTO/Kernel-HOWTO-2.php3
Regards,
Sergejs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2003 05:44 AM
10-15-2003 05:44 AM
Re: Compiling Kernel - steps/procedure
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2003 05:50 AM
10-15-2003 05:50 AM
Re: Compiling Kernel - steps/procedure
make menuconfig
save the config
make bzImage
make modules
make modules_install
mv kernel to /boot/
edit grub.conf
reboot