Skip to content

Check Disk Speed

Nicolas Morales edited this page Mar 14, 2022 · 1 revision

Make sure your disk speed can write at greater than 1 GB/s, otherwise, scripts will try to read an image before it is fully saved and will crash.

On Linux and Mac:

dd if=/dev/zero of=/tmp/output bs=8k count=10k; rm -f /tmp/output

The output should show you the write speed.

Clone this wiki locally