rsync
on Rackham¶
rsync
is a command-line tool for file transfer.
This page describes how to use rsync
on Rackham.
Copy a folder from local to Rackham¶
flowchart LR
local_computer[Your local computer. Run rsync from here]
rackham[Rackham]
local_computer --> |rsync| rackham
Copy a folder from a local computer to a Rackham 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 Rackham to local¶
flowchart LR
local_computer[Your local computer. Run rsync from here]
rackham[Rackham]
rackham --> |rsync| local_computer
Copy a folder from Rackham to your local computer.
On your local computer, do:
rsync --recursive [user_name]@rackham.uppmax.uu.se:/home/[user_name]/[folder_name] [local_folder_destination]
For example:
Where .
means 'the folder where I am now'.