Advertisement
Guest User

Untitled

a guest
Aug 4th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. rsync -avzm --stats --human-readable --include-from proj.lst /data/projects REMOTEHOST:/data/
  2.  
  3. + proj1
  4. + proj1/*
  5. + proj1/*/*
  6. + proj1/*/*/*.tar
  7. + proj1/*/*/*.pdf
  8. + proj2
  9. + proj2/*
  10. + proj2/*/*
  11. + proj2/*/*/*.tar
  12. + proj2/*/*/*.pdf
  13. ...
  14. ...
  15. ...
  16. - *
  17.  
  18. parallel --will-cite -j 5 rsync -avzm --stats --human-readable {} REMOTEHOST:/data/ ::: .
  19.  
  20. cd src-dir; find . -type f -size +100000 |
  21. parallel -v ssh fooserver mkdir -p /dest-dir/{//};
  22. rsync -s -Havessh {} fooserver:/dest-dir/{} The dirs created may end up with wrong permissions and smaller files are not being
  23.  
  24. rsync -Havessh src-dir/ fooserver:/dest-dir/
  25.  
  26. seq -w 0 99 | parallel rsync -Havessh fooserver:src/*{}.png destdir/
  27.  
  28. ls -1 | parallel rsync -a {} /destination/directory/
  29.  
  30. mount -t cifs -o username=,password= //static_ip/70tb /mnt/Datahoarder_Mount/ -o vers=3.0
  31.  
  32. rsync -h -v -r -P -t /mnt/Datahoarder_Mount/ /StoragePod
  33.  
  34. StoragePod 30.0T 144T 0 1.61K 0 130M
  35. StoragePod 30.0T 144T 0 1.61K 0 130M
  36. StoragePod 30.0T 144T 0 1.62K 0 130M
  37.  
  38. cat /home/misha/Desktop/rsync_logs_syncs/Datahoarder_Mount.log | parallel --will-cite -j 16 rsync -avzm --relative --stats --safe-links --size-only --human-readable {} /StoragePod/ > /home/misha/Desktop/rsync_logs_syncs/Datahoarder_Mount_result.log
  39.  
  40. StoragePod 29.9T 144T 0 1.63K 0 130M
  41. StoragePod 29.9T 144T 0 1.62K 0 130M
  42. StoragePod 29.9T 144T 0 1.56K 0 129M
  43.  
  44. rsync -h -v -r -P -t /mnt/Datahoarder_Mount/Mikhail/Marcello_zinc_bone /StoragePod/Marcello_zinc_bone
  45. rsync -h -v -r -P -t /mnt/Datahoarder_Mount/Mikhail/fibroblast_growth /StoragePod/fibroblast_growth
  46. rsync -h -v -r -P -t /mnt/Datahoarder_Mount/Mikhail/QDIC /StoragePod/QDIC
  47. rsync -h -v -r -P -t /mnt/Datahoarder_Mount/Mikhail/sexy_dps_cell /StoragePod/sexy_dps_cell
  48.  
  49. StoragePod 30.1T 144T 13 3.66K 112K 343M
  50. StoragePod 30.1T 144T 24 5.11K 184K 469M
  51. StoragePod 30.1T 144T 25 4.30K 196K 373M
  52.  
  53. parallel rsync -avi /path/to/source ::: host1: host2: host3:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement