Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
0 answers
233 views

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 ...
Daffy's user avatar
  • 465
5 votes
2 answers
3k views

Block devices provide buffering. This means that write() on a block device can return success, before the kernel has written the data to the device. A program can wait for all the buffered writes by ...
sourcejedi's user avatar
  • 53.7k
2 votes
0 answers
271 views

When forcefully removing a USB device on linux while there are outstanding writes to the device the kernel log fills up with blk_update_request: I/O error, dev sdg, sector 50618368 Buffer I/O error ...
georg's user avatar
  • 121
5 votes
0 answers
268 views

I'm trying to use xdelta3 to bring a remote block device into sync with a local one. I'm able to easily generate a xdelta3 patch file using the command: xdelta3 -e -B 33554432 -v -9 -I 0 -s /dev/...
David Pfeffer's user avatar
18 votes
6 answers
8k views

Is there a way to sync only one partition instead of all partitions? Something like "sync /dev/sdc1".
HandyGandy's user avatar
  • 2,249