Storage Speed test: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
m (Davidk moved page Speed test to Storage Speed test)
No edit summary
 
Line 1: Line 1:
To check the speed of any storage device<br>
To check the speed of any storage device<br>


= Using DD =
Write File
Write File
<pre>
<pre>
Line 9: Line 10:
<pre>
<pre>
dd if=~/test.tmp of=/dev/null bs=500K count=1024
dd if=~/test.tmp of=/dev/null bs=500K count=1024
</pre>
= Script =
<pre>
wget https://raw.githubusercontent.com/TheRemote/PiBenchmarks/master/Storage.sh -O /opt/Storage.sh
bash /opt/Storage.sh
</pre>
</pre>


[[Category : Linux]]
[[Category : Linux]]

Latest revision as of 03:03, 18 June 2021

To check the speed of any storage device

Using DD

Write File

dd if=/dev/zero of=~/test.tmp bs=500K count=1024

Read File

dd if=~/test.tmp of=/dev/null bs=500K count=1024

Script

wget https://raw.githubusercontent.com/TheRemote/PiBenchmarks/master/Storage.sh -O /opt/Storage.sh
bash /opt/Storage.sh