Decoding USB Write Speed in dd | Generated by AI

Home 2026.02

Question: What does this dd output mean? How is the disk write speed? Please convert it to human-readable format.

Answer:

This output comes from the macOS dd command (used with sudo dd if=... of=/dev/rdisk10 bs=1m), which is writing a Windows 11 ISO file to a USB flash drive (likely /dev/rdisk10 is your USB stick in raw mode for faster access).

dd periodically prints status when you press Ctrl + T during the copy (that’s why you see multiple lines). Each line shows progress at that moment.

Breakdown of one line (example):

866+0 records in
866+0 records out
908066816 bytes transferred in 43.725150 secs (20767609 bytes/sec)

Your speeds in human-readable format (MB/s):

The overall average speed dropped to about 15.5–16 MB/s toward the end.

Is this speed good or bad?

Your speed (15–21 MB/s) is quite typical for:

It’s not very fast, but also not unusually slow for many common USB sticks when writing ~5–6 GB continuously.
If you want faster ISO → USB creation (2–4× faster), try:

References:


Back Donate