rharder
Do not read this sign.
I found a page about gigabit (wish I had it) at http://www.helios.de/news/news99/N_14a_99.html
They suggest an easy way to benchmark your hard drive (or network performance for that reason). I'm going to try it when I get home. See what you guys get. The test writes a 1 GB file and then reads it back.
Write test (writes to file 'tstfile'):
Read test (reads file 'tstfile'):
Don't forget to delete 'tstfile' when you're done.
Each of these will give you output that looks something like this:
...except that your times shouldn't look anything like these times which are from a different timed command.
Divide 1024 by the "real" time. For example if your "real" time is 0m50.23s then 1024/50 = 20 MB/sec.
Try it out and report back! Don't forget to include relevant computer, hard drive, and possibly network stats!
I got 6.8 MB/sec on SourceForge's shell computers.
-Rob
They suggest an easy way to benchmark your hard drive (or network performance for that reason). I'm going to try it when I get home. See what you guys get. The test writes a 1 GB file and then reads it back.
Write test (writes to file 'tstfile'):
Code:
% [b]time dd if=/dev/zero bs=1024k of=tstfile count=1024[/b]
Code:
% [b]time dd if=tstfile bs=1024k of=/dev/null[/b]
Each of these will give you output that looks something like this:
Code:
1024+0 records in
1024+0 records out
real 0m9.179s
user 0m0.000s
sys 0m1.700s
Divide 1024 by the "real" time. For example if your "real" time is 0m50.23s then 1024/50 = 20 MB/sec.
Try it out and report back! Don't forget to include relevant computer, hard drive, and possibly network stats!
I got 6.8 MB/sec on SourceForge's shell computers.
-Rob