Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

hdparm-4.5: get/set IDE disk parameters]

0 views
Skip to first unread message

Mark Lord

unread,
Nov 20, 2001, 10:04:46 PM11/20/01
to
The latest version 4.5 of "hdparm" has been released,
and should appear shortly at:

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/ #
##########################################################################

0 new messages