rsync on Pelle¶
rsync is a command-line tool for file transfer.
This page describes how to use rsync on Pelle.
Copy a folder from local to Pelle¶
flowchart LR
local_computer[Your local computer. Run rsync from here]
pelle[Pelle]
local_computer --> |rsync| Pelle
Copy a folder from a local computer to a Pelle home folder.
On your local computer, do:
For example:
The --recursive flag is used to
copy a folder and all of its subfolders.
Copy a folder from Pelle to local¶
flowchart LR
local_computer[Your local computer. Run rsync from here]
pelle[Pelle]
pelle --> |rsync| local_computer
Copy a folder from Pelle to your local computer.
On your local computer, do:
rsync --recursive [user_name]@pelle.uppmax.uu.se:/home/[user_name]/[folder_name] [local_folder_destination]
For example:
Where . means 'the folder where I am now'.