http://www.ibiblio.org/pub/Linux/system/hardware/hdparm-4.5.tar.gz
hdparm is a Linux utility for viewing/manipulating various
IDE drive and driver parameters. Most systems can benefit
from improved performance using a command sequence similar to this:
#!/bin/sh
for d in /proc/ide/hd* ; do
if [ `cat $d/media` = 'disk' ]; then
hdparm -qm8 -qu1 -qc1 -qd1 -qW1 /dev/${d##*/}
elif [ `cat $d/media` = 'cdrom' ]; then
hdparm -qu1 -qd1 /dev/${d##*/}
fi
done
This latest version includes minor cleanups and Makefile fixes.
--
Mark Lord
Real-Time Remedies Inc.
ml...@pobox.com
##########################################################################
# Send submissions for comp.os.linux.announce to: co...@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION. #
# This group is archived at http://stump.algebra.com/~cola/ #
##########################################################################