summaryrefslogtreecommitdiff
path: root/dd_benchmark
diff options
context:
space:
mode:
Diffstat (limited to 'dd_benchmark')
-rwxr-xr-xdd_benchmark18
1 files changed, 0 insertions, 18 deletions
diff --git a/dd_benchmark b/dd_benchmark
deleted file mode 100755
index 0db9a46..0000000
--- a/dd_benchmark
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-for i in {0..4}; do
-echo "WRITE SPEED"
-dd if=/dev/zero of=tempfile bs=1M count=1024 conv=fdatasync,notrunc
-echo
-
-echo "READ SPEED"
-echo 3 > /proc/sys/vm/drop_caches
-dd if=tempfile of=/dev/null bs=1M count=1024
-echo
-
-echo "BUFFERED READ SPEED"
-dd if=tempfile of=/dev/null bs=1M count=1024
-
-rm tempfile
-done
-