Skip to content

Instantly share code, notes, and snippets.

@aborilov
Created February 12, 2015 12:05
Show Gist options
  • Select an option

  • Save aborilov/059015ac6914eafc6a0e to your computer and use it in GitHub Desktop.

Select an option

Save aborilov/059015ac6914eafc6a0e to your computer and use it in GitHub Desktop.
rsync

============ initial copy

  • copy tar 46Gb

============= ================================================================================= ========= type command time ============= ================================================================================= ========= tar creation :code:tar -cf dir_name dir_in_tar.tar 00:36:00 tar scp :code:scp dir_in_tar.tar @admin@server:/path/ 00:56:07 tar smb :code:cp dir_in_tar.tar smb_dir 00:10:00 tar rsync :code:rsync -W dir_in_tar.tar [email protected]::video/. 00:13:00 ============= ================================================================================= =========

  • copy files 46Gb

============= ========================================================================================== ========= type command time ============= ========================================================================================== ========= tar ssh pipe :code:tar --ignore-failed-read -cf - dir_name | ssh admin@server "(cd /path; tar xf -)" 01:02:00 cp smb :code:cp dir_name smb_dir 00:44:08 rsync smb :code:rsync -tWr dir_name smb_dir 00:48:00 rsync daemon :code:rsync -tWr dir_nama [email protected]::/video/. 00:26:00 ============= ========================================================================================== =========

============= syncing copy

  • syncing 50Gb + 50Mb

============= ========================================================================================== ========= type command time ============= ========================================================================================== ========= rsync smb :code:rsync -tWr dir_name smb_dir 00:06:00 rsync daemon :code:rsync -tWr dir_name [email protected]::/video/. 00:05:00 ============= ========================================================================================== =========

Total files in 4Tb: 4176192

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment