- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Kernel Upgrade
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-04-2003 08:52 AM
08-04-2003 08:52 AM
The reason I'm considering upgrading the kernel is to get the bonding to work on my servers. I don't loaded the lastest bonding driver from HP/Compaq but it fails indicating that it is not supported. I was told that I need to be on a later release of the kernel.
My situation:
I have a fiber card (GigE) that I need to bond to a copper broadcom card. I finally got the broadcom card to work properly, but the bonding is failing. Any information that you can provide on making this work at the release of the kernel or step by step instructions on upgrading the kernel would be greatly appreciated.
Operating System: RedHat Linux 7.2
Kernel: 2.4.7-10smp #1 SMP
Hardware: Proliant DL380 G3 (2.8 GHz)
NIC Information:
Intel(R) PRO/1000 Network Driver - version 5.0.43a
Copyright (c) 1999-2003 Intel Corporation.
eth0: HP Gigabit Ethernet Server Adapter
e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex
Current version of the driver for the fiber card.
rpm -q e1000
e1000-5.0.43a-1
Thanks,
Dan Beeler
dan.beeler@dhl.com
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 10:14 AM
08-04-2003 10:14 AM
Solution2.View the README
3.Run "make menuconfig" or "make xconfig"
Choose your options wisely.
You are all set to compile the kernel
# make dep && make clean && make bzImage && make modules && make modules_install
In case of an error you'll know.If succesful you can install the new kernel as
# cp arch/i386/boot/bzImage /boot/vmlinuz.new
You would also need to make changes to /etc/lilo.conf or /etc/grub.conf depenging on your bootloader.Reboot and Pray.
Hope this helps
Paddy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 11:00 AM
08-04-2003 11:00 AM
Re: Kernel Upgrade
:
####[ GNU/Linux One Stanza Tip (LOST) ]#######################
Sub : Steps for kernel compilation LOST #087
1. #cd /usr/src/linux 2. #make mrproper 3. #make menuconfig
4. #make dep 5. #make clean 6. #make modules
7. #make install 8. #make modules_install
Change /etc/lilo.conf and than run lilo -v
For detailed explaination refer to Kernel-HOWTO.
####[rfowkar (at) yahoo.com]##################################
:
http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/custom-guide/ch-kernel.html
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 07:32 AM
08-05-2003 07:32 AM
Re: Kernel Upgrade
Go to updates.redhat.com and get the current kernel 2.4.20-19.7. RedHat is dropping support on 7.2 on Dec. 31, 2003, so you may want to keep a backup copy. Get the source rpm as well. As an alternate you can get the current source, 2.4.21, from http://kernel.org/
From there you can follow Patty's advice.
Once you have a new kernel in place I would encourage you to make a recovery disk if you've got a floppy drive.
mkbootdisk --device /dev/fd0 2.4.20-19.7
That may come in real handy some time.
Good luck. Let us know how it turns out, and please assign some points if the answers helped you.
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 07:58 AM
08-05-2003 07:58 AM
Re: Kernel Upgrade
step 2: rpm -ivh downloaded_kernel-2.4.20-19.7smp.XXX.rpm
step 3: only if you use lilo:
a) edit /etc/lilo.conf : copy the existing lines which boot kernel 2.4.7, and replace vmlinuz-2.4.7-10smp with vmlinuz-2.4.20-19.7smp. do the same for initrd. replace the label "linux" with something else "linux-new" for instance
b) run lilo
If you use grub, the kernel install script will do all required modifications
step 4: reboot the machine, but make sure you select the new kernel from the boot manager.
If the machine boots OK, you might wish to make the new kernel the default one, replacing the old one. If not, reboot, using the old kernel and take the required steps to correct.
As a side note: the kernel upgrade process using packages is described here: http://www.redhat.com/support/resources/howto/kernel-upgrade/