Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

4
  • Thanks, I use rsync all the time, but wasn't aware that --inplace works with device files. Commented Aug 6, 2012 at 16:18
  • It's not working with rsync 3.0.9 on RHEL5:bash-3.2# $ rsync -P --inplace md0.image /dev/md0 md0.image 18883313664 2% 118.28MB/s 1:26:10 rsync: writefd_unbuffered failed to write 4 bytes to socket [sender]: Broken pipe (32) rsync: write failed on "/dev/md0": No space left on device (28) rsync error: error in file IO (code 11) at receiver.c(322) [receiver=3.0.9] rsync: connection unexpectedly closed (28 bytes received so far) [sender] rsync error: error in rsync protocol data stream (code 12) at io.c(605) [sender=3.0.9] Commented Aug 6, 2012 at 16:30
  • Turns out that even with --inplace, rsync 3.0.9 clobbers /dev/md0 first. Commented Aug 6, 2012 at 16:57
  • Is it trying to append? Commented Aug 6, 2012 at 17:28