Test disk speeds with simple commands
- Test writes
dd if=/dev/zero of=/mnt/media/library/testfile bs=16k count=128k
- Test Reads
time dd if=/mnt/media/library/testfile of=/dev/null bs=16k
- Local Disk
dd if=/dev/zero of=/tmp/tempfile bs=1M count=1024 conv=fdatasync
time dd if=/tmp/testfile of=/dev/null bs=1M