- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- how can I upgrade kernel from 2.4.9-e3 to 2.4.9-e1...
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
05-19-2005 03:11 AM
05-19-2005 03:11 AM
I'm a beginner of Redhat linux , and now I want to get a simple way to upgrade my redhat AS 2.1 with kernel 2.4.9-e3 to 2.4.9-e12
thanks for your help in advance !
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2005 03:35 AM
05-19-2005 03:35 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2005 03:42 AM
05-19-2005 03:42 AM
Re: how can I upgrade kernel from 2.4.9-e3 to 2.4.9-e12 ?
The simplest way would be to use up2date utility with RHN subscription. then you can use this utility to update all the packages in your system including kernel or you can specify which paackage you want update and get them updated.
Also the 2.4.9-e12 kernel is outdated and there is a new kernel which includes this fix along with few other fixes, check out the following link about it.
http://rhn.redhat.com/errata/RHSA-2005-283.html
the above link also gives instruction on how to upgrade the kernel from command line.
anyway even to download the kernel manually you need to have RHN subscription.
Regards,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2005 04:31 PM
05-19-2005 04:31 PM
Re: how can I upgrade kernel from 2.4.9-e3 to 2.4.9-e12 ?
I can find "low_io_sectors" and "high_io_setcotrs" in /proc/sys/vm after i upgrade kernel from 2.4.9-e3 to 2.4.9-e62
and then I adjust them as below:
echo 2000 /proc/sys/vm/low_io_sectors
echo 4000 /proc/sys/vm/high_io_sectors
and then result is ok as below
2000 /proc/sys/vm/low_io_sectors
4000 /proc/sys/vm/high_io_sectors
and I run " more /proc/sys/vm/low_io_sectors"
but I find the value is not changed
why ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 07:28 AM
05-20-2005 07:28 AM
Re: how can I upgrade kernel from 2.4.9-e3 to 2.4.9-e12 ?
echo 2000 > /proc/sys/vm/low_io_sectors
echo 4000 > /proc/sys/vm/high_io_sectors
(you forgot the ">").
If you want the values to "stick" between reboots you need to add the values to the
/etc/sysctl.conf
file.
make yourself a nice section at the bottom
of the file...
# Custom Richeal
vm.low_io_sectors=2000
vm.high_io_sectors=4000
Now, your parameters are set during runtime, and the next time you boot, they'll be back.
BTW, My numbers are MUCH bigger than yours (and I've not changed them). So, I assume that you're lowering these numbers - why? Are you going for a performance boost in there? If so, share with us why you're doing it so we can learn too.