posts/2013/04/08/quickly-transfer-files-between-servers/ #85
Replies: 1 comment 1 reply
-
It should be 'du -sb' not 'du -sh' because pv wants the size units in bytes. Dan |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
posts/2013/04/08/quickly-transfer-files-between-servers/
When transferring files between systems usually
rsync
orscp
are all that is needed. Sometimes, there are difficult edge cases. For example usingrsync
to transfer many files spread across 1000s of directories quickly. Recently, I needed to move several TB worth of files in varying size spread across 1000s of directories. I found thatrsync
spent most of the time traversing directories and not copying the data. I turned to the webs to find a better solution.https://www.devopsderek.com/posts/2013/04/08/quickly-transfer-files-between-servers/
Beta Was this translation helpful? Give feedback.
All reactions