Difference between revisions of "Rsync"
Jump to navigation
Jump to search
Line 52: | Line 52: | ||
Jane should run: | Jane should run: | ||
− | < | + | <code> |
[jane@laptop ~]$ rsync -av jsmith@rsync.rc.ufl.edu:/scratch/lfs/jsmith/build_tree_xyz_outputs ~ | [jane@laptop ~]$ rsync -av jsmith@rsync.rc.ufl.edu:/scratch/lfs/jsmith/build_tree_xyz_outputs ~ | ||
− | </ | + | </code> |
==References== | ==References== |
Revision as of 13:50, 18 March 2015
Overview
Rsync, which stands for "remote sync," is a utility for copying and syncing data between two computer systems. UFRC now provides a URL for users to rsync their data to and from the cluster. The basic syntax of the rsync command is:
[user@laptop ~]$ rsync options source destination
Some common options used with rsync commands | |
Option | Meaning |
-a | archive mode; allows copying files recursively and also preserves symbolic links, files permissions, user & group ownerships and timestamps |
-v | increase verbosity |
-r | copies data recursively |
-z | compress file data |
-h | output numbers in a human-readable format |
Copying files to the cluster
Example: Jane has started a new project called 'build_tree_xyz' on her laptop. She wishes to copy this project to the cluster to run some jobs related to the project. Jane runs rsync from her laptop to sync the project into her home directory. |
If Jane's username on her computer is the same as her UFRC username, she can run:
[jane@laptop ~]$ rsync -av build_tree_xyz rsync.rc.ufl.edu: ~
If Jane's username on her computer is different than her UFRC username, she needs to run:
[jane@laptop ~]$ rsync -av build_tree_xyz jsmith@rsync.rc.ufl.edu:~
Copying files from the cluster
Example: Jane's job writes some outputs to a directory on scratch '/scratch/lfs/jsmith/build_tree_xyz_outputs/' and she wants to rsync those outputs to her laptop for further analysis. |
Jane should run:
[jane@laptop ~]$ rsync -av jsmith@rsync.rc.ufl.edu:/scratch/lfs/jsmith/build_tree_xyz_outputs ~
References
- Visit the Rsync webpage: https://rsync.samba.org/
- Rsync Manual: On the command line, type
man rsync
There are also plenty of existing tutorials available on the web describing the various rsync options.