Speed up hard disk acess

Asked by achapp

Hello
      I would like to get some information about the settings for hard disk and cd drives . I am using feisty fawn on AMD64 . Ihow could I know whether the hard disk and cd drive is tuned for optimal settings like DMA , Multiple sector access etc . If its not set how could I change the present values .

with regards
Ashraf

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Antonio Pérez-Aranda Alcaide
Solved:
Last query:
Last reply:
Revision history for this message
Best Antonio Pérez-Aranda Alcaide (ant30) said :
#1

You can see if you are using DMA, and test speed and other with the follow commands:
For use with ATA disks/ATAPI/USB-ATA
hdparm

For SATA/SCSI/USB-SATA
sdparm

See man pages for more information
example:
man hdparm
man sdparm

Example, if you want to know if you have DMA active for hda unit, you can do some like this:
sudo hdpam -d /dev/hda
If you want to set ON the DMA on hda:
sudo hdparm -d 1 /dev/hda

For test Transfers speed:
sudo hdparm -tT /dev/hda

There are many options.

Revision history for this message
achapp (achapp) said :
#2

Thanks Antonio Pérez-Aranda Alcaide, that solved my question.