- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- can't find the "low_io_sectors" and "high_io_secto...
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-18-2005 11:30 PM
05-18-2005 11:30 PM
Now I want to adjust kernel parameter as below:
echo 2000 > /proc/sys/vm/low_io_sectors
echo 4000 > /proc/sys/vm/high_io_sectors
but i can't find them in /proc/sys/vm .
os: redhat AS 2.1
my kernel: 2.4.9-e3smp
url:
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=85231
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2005 11:56 PM
05-18-2005 11:56 PM
Solutioni check on my 2.6 kernel but couldnt find one either. but i think they have changed a lot from 2.4 to 2.6, nevermind.
check up through sysctl, try one of these to find which one succeeds.
sysctl proc.sys.vm.low_io_sectors
sysctl proc.stat.low_io_sectors
sysctl proc.sys.low_io_sectors
if any of them succeed and outputs the value then set them using sysctl -p, for further information check 'man sysctl'
Regards,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2005 01:06 AM
05-19-2005 01:06 AM
Re: can't find the "low_io_sectors" and "high_io_sectors" in /proc/sys/vm
What we have done in 2.4.9-e.12
i.e. a different kernel revision. Update to at least that kernel revision, and try again.
I know that option isn't available on my FC box running a 2.4 series kernel.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2005 03:17 AM
05-19-2005 03:17 AM
Re: can't find the "low_io_sectors" and "high_io_sectors" in /proc/sys/vm
thanks for yours help !
As I'm beginner of Redhat Linux , I want to know how to upgrade my Redhat AS 2.1 with kernel 2.4.9-e3smp to 2.4.9-e12smp.
pls advise a simple way !
thanks again !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2005 03:41 AM
05-19-2005 03:41 AM
Re: can't find the "low_io_sectors" and "high_io_sectors" in /proc/sys/vm
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:34 PM
05-19-2005 04:34 PM
Re: can't find the "low_io_sectors" and "high_io_sectors" in /proc/sys/vm
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-22-2005 06:30 PM
05-22-2005 06:30 PM
Re: can't find the "low_io_sectors" and "high_io_sectors" in /proc/sys/vm
you forgot to add '>' symbol
it should be like this:
echo 2000 > /proc/sys/vm/low_io_sectors
Hope this helps,
Gopi