Operating System - Linux
1828597 Members
1912 Online
109983 Solutions
New Discussion

can't change the value of /proc/sys/vm/low_io_sectors and high_io_sectors

 
richeal75
Advisor

can't change the value of /proc/sys/vm/low_io_sectors and high_io_sectors

Hello ,

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 ?
1 REPLY 1
Claudio Cilloni
Honored Contributor

Re: can't change the value of /proc/sys/vm/low_io_sectors and high_io_sectors

you commands are wrong:

# echo 2000 >/proc/sys/vm/low_io_sectors
# echo 4000 >/proc/sys/vm/high_io_sectors

you forget the '>' !

ciao
Claudio