To find out how fast is your HDD in linux use:
hdparm -tT /dev/sda
This measurement is essentially an indication of the throughput of the processor, cache, and memory of the system under test. Here is for loop to run test 3 time in a row:
for i in 1 2 3; do hdparm -tT /dev/sda; done