Say I do something like dd if=file of=/dev/sdc
(simplified for illustration), is this buffered? Can I sync
it like I would any other filesystem write, or do I need to do something else to make sure the write is persistent?
Asked
Active
Viewed 178 times
0

Daffy
- 395
sync
, and I think that is enough. – nobody Sep 24 '21 at 05:28conv=fsync
if yourdd
supports it. – Kamil Maciorowski Sep 24 '21 at 06:00