How to nice the I/O
Feb 7, 2011
1 minute read

How to “nice” the I/O

aptitude install util-linux
  • Extreme case : only run a program when I/O is idle (root mandatory) :
ionice -c3 xfs_fsr -t 600
  • An addition to my .bashrc to ensure my niced program also preserve my I/O
alias nice='ionice -c2 -n7 nice'


comments powered by Disqus