how to estimate the disk access time?
e.g. the time between read one byte and another byte in the
disk.
Answer Posted / daniele
http://www.linuxinsight.com/how_fast_is_your_disk.html
% sudo hdparm -t /dev/hda
/dev/hda:
Timing buffered disk reads: 140 MB in 3.02 seconds = 46.28
MB/sec
Substitute /dev/hda with the name of your raw disk device,
of course (for example, it might be /dev/sda if you're using
libata, or something else).
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain pointers in c programming?
What are the benefits of organizational structure?
Write a program to check armstrong number in c?
Why c is called free form language?
What does 3 periods mean in texting?
What is %d used for?
Compare interpreters and compilers.
How can I discover how many arguments a function was actually called with?
What is variables in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
How many types of errors are there in c language? Explain
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
what is use of malloc and calloc?
What is double pointer in c?