Bazı nedenlerle linux işletim sistemine sahip sunucunuzda Disk okuma ve yazma hız testi yapmak isteyebilirsiniz. Önce 1M blokluk 1024 count içeren 1 GB lık dosya oluşturulur, ve bu dosya ardından okutularak hem yazma hemde okuma testi yapılmış olur.
Disk yazma testi örnek komut;
| 1 | sync; dd if=/dev/zero of=tempfile bs=1M count=1024; sync | 
Disk okuma testi örnek komut;
| 1 | dd if=tempfile of=/dev/null bs=1M count=1024 | 


