Hello Linux folkz, Is there any way to tune up SCSI HD parameters to make its transfer rate faster? I tuned up my WD IDE HD with hdparm like this. And it's running faster than SCSI HD. About 32.17 MB/sec IDE HD vs 21.15 MB/sec SCSI HD. What can be done to SCSI in this respect? Any ideas are greatly appreciated. Thanks in advance Alex # Turn on 32 bit transfers on the IDE Hard Drive echo "Turn on 32 bit transfers on the Hard Drive" /sbin/hdparm -c3 /dev/hda # Set sector count for filesystem read-ahead. Default is -a8. /sbin/hdparm -a2 /dev/hda # Turn on IDE transfer: 16 sectors I/O per IRQ echo "Turn on IDE transfer: 16 sectors I/O per IRQ" /sbin/hdparm -m16 /dev/hda # Turn on DMA transfer echo "Turn on DMA transfer" /sbin/hdparm -d1 /dev/hda # Get/set interrupt-unmask flag for the HD. echo "Setting unmaskirq to 1" /sbin/hdparm -u1 /dev/hda # Enable the IDE drive's read-lookahead /sbin/hdparm -A1 /dev/hda # Enable the IDE drive's write-caching echo "Enable write-caching" /sbin/hdparm -W1 /dev/hda # Disable HD sleep mode echo "Disable sleep mode" /sbin/hdparm -S0 /dev/hda # Save the HDPARM settings over the HD reset /sbin/hdparm -k1 /dev/hda # Keep_features_over_reset /sbin/hdparm -K1 /dev/hda -- MS Windows users should be covered under the Americans with Disabilities Act.
participants (1)
-
Alex Daniloff