Transfer files between Unix machines with rsync
Transfer files from local to remote
Syntax (explainshell):
-L, --copy-links
: when encountering symlinks, copy the actual directories / files instead of the symlink.-P, --progress
: show progress info.-a, --archive
: recursively copy files.
1. Configure SSH aliases
Configure SSH aliases to make file transfers easier. If you don’t, you’ll have to type the full IP address instead of an alias (e.g., sajad@172.12.34.56:some-path
instead of just prod:some-path
).
2. Create test files and directories
Let’s test the rsync setup by first transferring a test file. Create local file:
Open a new terminal tab, SSH into remote machine, and create remote directory:
3. Make a test transfer
Run:
Now, jump into your remote machine and you should see the file has been transferred:
Transfer files from remote to local
Transferring from remote to local is the same process, except you specify the remote path first. So, something like this:
Bonus: use bash alias
Add this alias to whatever file you use for aliases (e.g., .zshrc
, bashrc
):
Now, you can do something like this:
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment