Use at your own risk
DMA
Many distros are pretty conservative and leave DMA turned off, this can be enabled with the following command as root.
CODE
hdparm -d1 /dev/hdX
Replacing hdX with the hard drive, usually hda if you only have one hard drive.
32 bit access
Again many distros leave this turned off and the hard drive in 16 bit. To make it run in 32 bit mode run the following command as root.
CODE
hdparm -c1 /dev/hdX
Again replacing hdX with the hard drive.
IDE block mode
Unless your hard drive is very old you can enable IDE block mode. To discover if your had drive supports this, run the following command as root.
CODE
hdparm -i /dev/hdX
Again replacing hdX with the hard drive.
Look for the value MaxMultiSect and enter the following
CODE
hdparm -m 16 /dev/hdX
Again replacing hdX with the hard drive and replacing 16 with the value of MaxMultiSect.
Testing differences
To test and see how much difference these commands made run the following command as root before and after the above commands to compare results.
CODE
hdparm -tT /dev/hdX
Again replacing hdX with the hard drive.
If any of this blows up your computer, makes your hands self combust, chair dissapears, mouse imp[lodes, keyboard melts, it's not my fault.
None of the above happened to me on my computer
FAQ team: reckon I could put this as a FAQ somewhere?
