How to transfer data: Difference between revisions

From RCSWiki
Jump to navigation Jump to search
(60 intermediate revisions by 5 users not shown)
Line 1: Line 1:
= General =
{{Message Box
|title=Data Transfer Nodes
|message=
For performance and resource reasons, file transfers should be performed on the data transfer node arc-dtn.ucalgary.ca rather than on the the ARC login node.  Since the ARC DTN has the same shares as ARC, any files you transfer to the DTN will also be available on ARC.
}}


= Linux and MacOS =


While you can find transfer programs for MacOS and Linux that have graphical point-and-click interface,
= Command Line File Transfer Tools =
both of these operating system come with pre-installed (most of the time) command line transfer tools:
You may use the following command-line file transfer utilities on Linux, MacOS, and Windows. File transfers using these methods require your computer to be on the University of Calgary campus network or via the University of Calgary IT General VPN.
'''scp''', '''rsync''', '''sftp'''.
These are powerful and convenient tools
that can handle any practical data transfer to and from our compute clusters.


== scp -- secure copy ==
If you are working on a Windows computer, you will need to install these utilities separately as they are not installed by default. Newer versions of Windows 10 (1903 and up) have '''SSH''' built-in as part of the '''openssh''' package. However, you may be better off using one of the [[#GUI File Transfer]] tools listed in the following section.


* Manual page on-line: http://man7.org/linux/man-pages/man1/scp.1.html
== <code>scp</code>: Secure Copy ==
<code>scp</code> is a secure and encrypted method of transferring files between machines via SSH. It is available on Linux and Mac computers by default and can be installed on Windows by installing the OpenSSH package.


The general format for the command is:
$ scp [options] source destination
* The <code>source</code> and <code>destination</code> fields can be a local file / directory or a remote one.
* The ''local location'' is a normal Unix path, absolute or relative and
* The ''remote location'' has a format <code>username@remote.system.name:file/path</code>.
* The ''remote relative file path'' is relative to the home directory of the <code>username</code> on the remote system.
You may see all the available options with <code>scp</code> by viewing the [http://man7.org/linux/man-pages/man1/scp.1.html man page].
=== Example Usage ===
Common operations are given below. On your desktop, to:
* Transfer a single file (eg. <code>data.dat</code>) to ARC: <syntaxhighlight lang="bash">
desktop$ scp data.dat username@arc-dtn.ucalgary.ca:/desired/destination
</syntaxhighlight>
* Transfer all files ending with <code>.dat</code> to ARC: <syntaxhighlight lang="bash">
desktop$ scp *.dat username@arc-dtn.ucalgary.ca:/desired/destination
</syntaxhighlight>
* To transfer an entire directory to ARC: <syntaxhighlight lang="bash">
desktop$ scp -r my_data_directory/ username@arc-dtn.ucalgary.ca:/desired/destination
</syntaxhighlight>
== <code>rsync</code> ==
<code>rsync</code> is a utility for transferring and synchronizing files efficiently. The efficiency for its file synchronization is achieved by its delta-transfer algorithm, which reduces the amount of data sent over the network by sending only the differences between the source files and the existing files in the destination. 
<code>rsync</code> can be used to copy files and directories locally on a system or between two computers via SSH. Unlike <code>scp</code>. Because it is designed to synchronize two locations, partial transfers can be restarted by re-running <code>rsync</code> without losing progress.  Resuming a partial transfer is not possible with <code>scp</code>.
The general format for the command is similar to '''scp''':
$ rsync [options] source destination
* The <code>source</code> and <code>destination</code> fields can be a local file / directory or a remote one.
* <code>rsync</code> '''cannot''' transfer files between '''two remote''' locations. The source or the destination must be a local path.
* The ''local location'' is a normal Unix path, absolute or relative and
* The ''remote location'' has a format <code>username@remote.system.name:file/path</code>.
* The ''remote relative file path'' is relative to the home directory of the <code>username</code> on the remote system.


'''scp''' copies files between hosts on a network. 
You may see all the available options with <code>rsync</code> by viewing the [http://man7.org/linux/man-pages/man1/rsync.1.html man page].
It uses '''ssh''' for data transfer, and uses the same authentication and provides the same security as '''ssh'''.


=== Example Usage ===
Common operations are given below. On your desktop, to:


In practical terms '''scp''' is a minimal and also sufficient transfer tool
* Upload a single file (eg. <code>data.dat</code>) from your workstation to your ARC: <syntaxhighlight lang="bash">
to copy files between network connected Unix based computers in a secure manner.
desktop$ rsync -v data.dat username@arc-dtn.ucalgary.ca:/desired/destination
</syntaxhighlight>
* Upload all files matching a wildcard (eg. ending in <code>*.dat</code>): <syntaxhighlight lang="bash">
$ rsync -v *.dat username@arc-dtn.ucalgary.ca:/desired/destination
</syntaxhighlight>
* Upload an entire directory (eg. <code>my_data</code> to <code>~/projects/project2</code>): <syntaxhighlight lang="bash">
$ rsync -axv my_data username@arc-dtn.ucalgary.ca:~projects/project2/
</syntaxhighlight>
* Upload more than one directory: <syntaxhighlight lang="bash">
desktop$ rsync -axv my_data1 my_data2 my_data3 username@arc-dtn.ucalgary.ca:/desired/destination
</syntaxhighlight>
* Download one file (eg. <code>output.dat</code>) from ARC to the current directory on your workstation: <syntaxhighlight lang="bash">
## Note the '.' at the end of the command which references the current working directory on your computer
desktop$ rsync -v username@arc-dtn.ucalgary.ca:projects/project1/output.dat .
</syntaxhighlight>
* Download one directory (eg. <code>outputs</code>) from ARC to the current directory on your workstation:<syntaxhighlight lang="bash">
desktop$ rsync -axv username@arc-dtn.ucalgary.ca:projects/project1/outputs .
</syntaxhighlight>


The general format for the command is:
== <code>sftp</code>: secure file transfer protocol ==
$ scp [options] source destination


The <code>source</code> and <code>destination</code> fields can be a local file / directory or a remote one.
* Manual page on-line: http://man7.org/linux/man-pages/man1/sftp.1.html
The ''local location'' is a normal Unix path, absolute or relative and
the ''remote location'' has a format <code>username@remote.system.name:file/path</code>.
The ''remote relative file path'' is relative to the home directory of the <code>username</code> on the remote system.


=== Examples ===
The commands below are issued on '''your local computer'''.


One file <code>data.dat</code> on your workstation in your current directory to your ARC's home directory:
'''sftp''' is a file transfer program, similar to '''ftp''',
  $ scp data.dat username@arc.ucalgary.ca:
which performs all operations over an encrypted '''ssh''' transport.  
It may also use many features of '''ssh''', such as public key authentication and compression.


Several files matching a wildcard on your workstation in your current directory to your ARC's home directory:
$ scp *.dat username@arc.ucalgary.ca:


A directory <code>my_data</code> on your workstation in your current directory into 
'''sftp''' has an interactive mode,
<code>projects/project2</code> directory inside your ARC's home directory:
in which sftp understands a set of commands similar to those of '''ftp'''.
$ scp -r my_data username@arc.ucalgary.ca:projects/project2/
Commands are case insensitive.


== rsync -- Remote SYNCronizer ==
== <code>rclone</code>: rsync for cloud storage ==
'''Rclone''' is a command line program to sync files and directories to and from a number of on-line storage services.


* Manual page on-line: http://man7.org/linux/man-pages/man1/rsync.1.html
* https://rclone.org/
You may backup your data from arc-dtn to your personal 5TB UCalgary OneDrive to create a safe second copy at a distance.


[https://rcs.ucalgary.ca/images/8/8e/Rclone_and_OneDrive_on_arc.pdf detailed rclone configuration instructions]


'''Rsync''' is a fast and extraordinarily versatile file copying tool. 
Please note, if you are syncing your OneDrive with a PC or Mac, your new backup of arc home may be auto-replicated to your computer. You may choose to not replicate using the PC or Mac OneDrive client (help & settings -> settings -> account -> Choose folders) .
It can copy locally, to/from another host over any remote shell.
It is famous for its delta-transfer algorithm, which reduces the amount of data sent over
the network by sending only the differences between the source files and the existing files in the destination. 
'''Rsync''' is widely used for backups and mirroring and as an improved copy command for everyday use.


== <code>curl</code> and <code>wget</code>: downloading from the internet ==
To download a file with the ability to resume a partial download:
  curl -c http://example.com/resource.tar.gz -O
  wget -c http://example.com/resource.tar.gz


In practice, '''rsync''' is '''scp''' on steroids.
It is designed to '''synchronize''' two locations, that is to make them the same.
So, if a transfer stops for some reason, if one restarts the transfer, '''rsync''' will check the destination
and only transfers what is needed.
This way, you can conveniently restart the transfer at any moment without losing the progress.
With '''scp''' this is not an option.


The general format for the command is similar to '''scp''':
= Graphical File Transfer Tools =
$ rsync [options] source destination
== FileZilla ==
FileZilla is a free cross-platform file transfer program that can transfer files via FTP and SFTP.


The <code>source</code> and <code>destination</code> fields can be a local file / directory or a remote one.
=== Installation ===
The ''local location'' is a normal Unix path, absolute or relative and
You may obtain Filezilla from the project's official website at: https://filezilla-project.org/download.php?type=client. '''Please note''': The official installer may bundle ads and unwanted software. Be careful when clicking through.
the ''remote location'' has a format <code>username@remote.system.name:file/path</code>.
The ''remote relative file path'' is relative to the home directory of the <code>username</code> on the remote system.


=== Examples ===
Alternatively, you may obtain Filezilla from Ninite: https://ninite.com/filezilla
The commands below are issued on '''your local computer'''.


Upload '''one file''' <code>data.dat</code> on your workstation in your current directory to your ARC's home directory:
=== Connecting to ARC ===
$ rsync -v data.dat username@arc.ucalgary.ca:
If working off campus, first connect to the University of Calgary General VPN. Open Filezilla and connect to <code>arc-dtn.ucalgary.ca</code> on port <code>22</code>.
[[File:Filezilla.jpg|alt=Connecting to ARC using Filezilla|none|thumb|Connecting to ARC using Filezilla]]


Upload '''several files matching a wildcard''' on your workstation in your current directory to your ARC's home directory:
== MobaXterm (Windows) ==
$ rsync -v *.dat username@arc.ucalgary.ca:
'''MobaXterm''' is the recommended tool for remote access and data transfer in '''Windows''' OSes.


Upload '''a directory''' <code>my_data</code> on your workstation in your current directory into 
MobaXterm is a one-stop solution for most remote access work on a compute cluster or a Unix / Linux server.
<code>projects/project2</code> directory inside your ARC's home directory:
$ rsync -axv my_data username@arc.ucalgary.ca:projects/project2/


Upload '''several directories''' on your workstation in your current directory into  
It provides many Unix like utilities for Windows including an '''SSH''' client and '''X11''' graphics server. It provides a graphical interface for
<code>projects/project2</code> directory inside your ARC's home directory:
data transfer operations.
$ rsync -axv my_data1 my_data2 my_data3 username@arc.ucalgary.ca:projects/project2/


Download '''one file''' <code>output.dat</code> from ARC to the current directory on your workstation:
* Website: https://mobaxterm.mobatek.net/
$ rsync -v username@arc.ucalgary.ca:projects/project1/output.dat .
Note the '''"."''' at the end of the command, it means '''current directory'''.


Download '''one directory''' <code>outputs</code> from ARC to the current directory on your workstation:
== WinSCP (Windows) ==
$ rsync -axv username@arc.ucalgary.ca:projects/project1/outputs .
WinSCP is a free Windows file transfer tool.


== sftp -- secure file transfer protocol ==
https://winscp.net/eng/index.php


* Manual page on-line: http://man7.org/linux/man-pages/man1/sftp.1.html
= Cloud based Fire Transfer Services =
== Globus File Transfer ==
Globus File Transfer is a cloud based service for file transfer and file sharing. It uses GridFTP for high speed and reliable data transfers<br>


* Globus Docs: https://docs.globus.org/


'''sftp''' is a file transfer program, similar to '''ftp''',
* The Alliance Docs on Globus: https://docs.alliancecan.ca/wiki/Globus
which performs all operations over an encrypted '''ssh''' transport.
It may also use many features of '''ssh''', such as public key authentication and compression.


* Globus How-Tos: https://docs.globus.org/how-to/


'''sftp''' has an interactive mode,
=== How to get started ===
in which sftp understands a set of commands similar to those of '''ftp'''.
Commands are case insensitive.


= Windows =
# Navigate to the web page https://www.globusid.org
# Create a Globus ID and password using your google account.


'''MobaXterm''' is the recommended tool for remote access and data transfer in '''Windows''' OSes.
=== Use Globus Web Application to transfer files ===


== MobaXterm ==
# To initiate data transfers using the Globus Web Application, navigate to https://www.globusid.org/login and log into your Globus account
# On the left panel, click on File Manager to define/select the collection you wish to use. For example, to transfer data from ARC cluster (collection 1) to Compute Canada cedar cluster (collection 2)
#* Under collection, for ARC data transfer node search for arc-dtn-collection. You will see it is listed with the following description:  "Mapped Collection on          UCalgary ARC-DTN endpoint  "
#* from the drop down menu. Authenticate your access using UCalgary IT credentials. This will bring you to the home directory on ARC.
#* Next, for Compute Canada cedar data transfer node choose 'collection 2' as 'computecanada#cedar-dtn' from the drop down menu. Again authenticate your access using Compute Canada credentials. Navigate to the location where you want to transfer the file.
#* Select the file to be transferred from collection 1' and initiate the transfer process.


* Website: https://mobaxterm.mobatek.net/
=== Use Globus Web Application to Share Files ===
You may grant access to a folder in your allocation on ARC to be used for uploading or sharing files with any individual with a globus account, either through ComputeCanada or their own institution.  


'''MobaXterm''' is a one-stop solution for most remote access work on a compute cluster or a Unix / Linux server.
Please see https://docs.globus.org/how-to/share-files/
Along the remote access '''SSH''' client and '''X11''' graphics server it provides graphical interface for
data transfer operations.


= Large Data transfers =


== Using screen and rsync ==
= Transferring Large Datasets =


If you want to transfer a large amount of data from a remote Unix system to ARC you can use '''rsync'' to handle the transfer.
=== Using screen and rsync ===
However, you will have to keep your SSH session from your workstation alive during the entire transfer.
If you want to transfer a large amount of data from a remote Unix system to ARC you can use ''<code>rsync</code>'' to handle the transfer. However, you will have to keep your SSH session from your workstation connected during the entire transfer which is often not convenient or not feasible.  
Very often this is not convenient or not feasible.  


To overcome this one can run the '''rsync''' transfer inside a '''screen''' virtual session on ARC.
To overcome this one can run the '''rsync''' transfer inside a '''screen''' virtual session on ARC. '''screen''' creates an SSH session local to ARC and allows for reconnection from SSH sessions from your workstation.
'''screen''' creates an SSH session local to ARC and allows for reconnection from SSH sessions from your workstation.


To initialize
To begin, login to ARC and start <code>screen</code> with the screen command:
<pre>
<pre>
# Login to ARC
# Login to ARC
Line 138: Line 177:
$ screen
$ screen


# Start the transfer.
# While in the new screen session, start the transfer with rsync.
$ rsync -axv ext_user@external.system:path/to/remote/data  .
$ rsync -axv ext_user@external.system:path/to/remote/data  .


# Now you can disconnect from ARC. Close the lid of you laptop or turn off the computer.
# Disconnect from the screen session with the hotkey 'Ctrl-a d'
# You may now disconnect from ARC or close the lid of you laptop or turn off the computer.
</pre>
</pre>


Line 154: Line 194:
# If the transfer has been finished close the screen session.
# If the transfer has been finished close the screen session.
$ exit
$ exit
# If the transfer is still running, disconnect from the screen session with the hotkey 'Ctrl-a d'
</pre>
=== Very large files ===
If the files are large and the transfer speed is low the transfer may fail before the file has been transferred.
'''rsync''' may not be of help here, as it will not restart the file transfer (have not tested recently).
The solution may be to split the large file into smaller chunks, transfer them using rsync and then join them on the remote system (ARC for example):
<pre>
# Large file is 506MB in this example.
$ ls -l t.bin
-rw-r--r-- 1 drozmano drozmano 530308481 Jun  8 11:06 t.bin
# split the file:
$ split -b 100M t.bin t.bin_chunk.
# Check the chunks.
$ ls -l t.bin_chunk.*
-rw-r--r-- 1 drozmano drozmano 104857600 Jun  8 11:09 t.bin_chunk.aa
-rw-r--r-- 1 drozmano drozmano 104857600 Jun  8 11:09 t.bin_chunk.ab
-rw-r--r-- 1 drozmano drozmano 104857600 Jun  8 11:09 t.bin_chunk.ac
-rw-r--r-- 1 drozmano drozmano 104857600 Jun  8 11:09 t.bin_chunk.ad
-rw-r--r-- 1 drozmano drozmano 104857600 Jun  8 11:09 t.bin_chunk.ae
-rw-r--r-- 1 drozmano drozmano  6020481 Jun  8 11:09 t.bin_chunk.af
# Transfer the files:
$ rsync -axv t.bin_chunks.* username@arc.ucalgary.ca:
</pre>
Then login to ARC and join the files:
<pre>
$ cat t.bin_chunk.* > t.bin
$ ls -l
-rw-r--r-- 1 drozmano drozmano 530308481 Jun  8 11:06 t.bin
</pre>
</pre>
Success.
[[Category:Guides]]

Revision as of 20:05, 12 July 2022

Information Icon.png

Data Transfer Nodes

For performance and resource reasons, file transfers should be performed on the data transfer node arc-dtn.ucalgary.ca rather than on the the ARC login node. Since the ARC DTN has the same shares as ARC, any files you transfer to the DTN will also be available on ARC.


Command Line File Transfer Tools

You may use the following command-line file transfer utilities on Linux, MacOS, and Windows. File transfers using these methods require your computer to be on the University of Calgary campus network or via the University of Calgary IT General VPN.

If you are working on a Windows computer, you will need to install these utilities separately as they are not installed by default. Newer versions of Windows 10 (1903 and up) have SSH built-in as part of the openssh package. However, you may be better off using one of the #GUI File Transfer tools listed in the following section.

scp: Secure Copy

scp is a secure and encrypted method of transferring files between machines via SSH. It is available on Linux and Mac computers by default and can be installed on Windows by installing the OpenSSH package.

The general format for the command is:

$ scp [options] source destination
  • The source and destination fields can be a local file / directory or a remote one.
  • The local location is a normal Unix path, absolute or relative and
  • The remote location has a format username@remote.system.name:file/path.
  • The remote relative file path is relative to the home directory of the username on the remote system.

You may see all the available options with scp by viewing the man page.

Example Usage

Common operations are given below. On your desktop, to:

  • Transfer a single file (eg. data.dat) to ARC:
    desktop$ scp data.dat username@arc-dtn.ucalgary.ca:/desired/destination
    
  • Transfer all files ending with .dat to ARC:
    desktop$ scp *.dat username@arc-dtn.ucalgary.ca:/desired/destination
    
  • To transfer an entire directory to ARC:
    desktop$ scp -r my_data_directory/ username@arc-dtn.ucalgary.ca:/desired/destination
    

rsync

rsync is a utility for transferring and synchronizing files efficiently. The efficiency for its file synchronization is achieved by its delta-transfer algorithm, which reduces the amount of data sent over the network by sending only the differences between the source files and the existing files in the destination.

rsync can be used to copy files and directories locally on a system or between two computers via SSH. Unlike scp. Because it is designed to synchronize two locations, partial transfers can be restarted by re-running rsync without losing progress. Resuming a partial transfer is not possible with scp.

The general format for the command is similar to scp:

$ rsync [options] source destination
  • The source and destination fields can be a local file / directory or a remote one.
  • rsync cannot transfer files between two remote locations. The source or the destination must be a local path.
  • The local location is a normal Unix path, absolute or relative and
  • The remote location has a format username@remote.system.name:file/path.
  • The remote relative file path is relative to the home directory of the username on the remote system.

You may see all the available options with rsync by viewing the man page.

Example Usage

Common operations are given below. On your desktop, to:

  • Upload a single file (eg. data.dat) from your workstation to your ARC:
    desktop$ rsync -v data.dat username@arc-dtn.ucalgary.ca:/desired/destination
    
  • Upload all files matching a wildcard (eg. ending in *.dat):
     $ rsync -v *.dat username@arc-dtn.ucalgary.ca:/desired/destination
    
  • Upload an entire directory (eg. my_data to ~/projects/project2):
     $ rsync -axv my_data username@arc-dtn.ucalgary.ca:~projects/project2/
    
  • Upload more than one directory:
    desktop$ rsync -axv my_data1 my_data2 my_data3 username@arc-dtn.ucalgary.ca:/desired/destination
    
  • Download one file (eg. output.dat) from ARC to the current directory on your workstation:
    ## Note the '.' at the end of the command which references the current working directory on your computer
    desktop$ rsync -v username@arc-dtn.ucalgary.ca:projects/project1/output.dat .
    
  • Download one directory (eg. outputs) from ARC to the current directory on your workstation:
    desktop$ rsync -axv username@arc-dtn.ucalgary.ca:projects/project1/outputs .
    

sftp: secure file transfer protocol


sftp is a file transfer program, similar to ftp, which performs all operations over an encrypted ssh transport. It may also use many features of ssh, such as public key authentication and compression.


sftp has an interactive mode, in which sftp understands a set of commands similar to those of ftp. Commands are case insensitive.

rclone: rsync for cloud storage

Rclone is a command line program to sync files and directories to and from a number of on-line storage services.

You may backup your data from arc-dtn to your personal 5TB UCalgary OneDrive to create a safe second copy at a distance.

detailed rclone configuration instructions

Please note, if you are syncing your OneDrive with a PC or Mac, your new backup of arc home may be auto-replicated to your computer. You may choose to not replicate using the PC or Mac OneDrive client (help & settings -> settings -> account -> Choose folders) .

curl and wget: downloading from the internet

To download a file with the ability to resume a partial download:

 curl -c http://example.com/resource.tar.gz -O 
 wget -c http://example.com/resource.tar.gz


Graphical File Transfer Tools

FileZilla

FileZilla is a free cross-platform file transfer program that can transfer files via FTP and SFTP.

Installation

You may obtain Filezilla from the project's official website at: https://filezilla-project.org/download.php?type=client. Please note: The official installer may bundle ads and unwanted software. Be careful when clicking through.

Alternatively, you may obtain Filezilla from Ninite: https://ninite.com/filezilla

Connecting to ARC

If working off campus, first connect to the University of Calgary General VPN. Open Filezilla and connect to arc-dtn.ucalgary.ca on port 22.

Connecting to ARC using Filezilla
Connecting to ARC using Filezilla

MobaXterm (Windows)

MobaXterm is the recommended tool for remote access and data transfer in Windows OSes.

MobaXterm is a one-stop solution for most remote access work on a compute cluster or a Unix / Linux server.

It provides many Unix like utilities for Windows including an SSH client and X11 graphics server. It provides a graphical interface for data transfer operations.

WinSCP (Windows)

WinSCP is a free Windows file transfer tool.

https://winscp.net/eng/index.php

Cloud based Fire Transfer Services

Globus File Transfer

Globus File Transfer is a cloud based service for file transfer and file sharing. It uses GridFTP for high speed and reliable data transfers

How to get started

  1. Navigate to the web page https://www.globusid.org
  2. Create a Globus ID and password using your google account.

Use Globus Web Application to transfer files

  1. To initiate data transfers using the Globus Web Application, navigate to https://www.globusid.org/login and log into your Globus account
  2. On the left panel, click on File Manager to define/select the collection you wish to use. For example, to transfer data from ARC cluster (collection 1) to Compute Canada cedar cluster (collection 2)
    • Under collection, for ARC data transfer node search for arc-dtn-collection. You will see it is listed with the following description: "Mapped Collection on UCalgary ARC-DTN endpoint "
    • from the drop down menu. Authenticate your access using UCalgary IT credentials. This will bring you to the home directory on ARC.
    • Next, for Compute Canada cedar data transfer node choose 'collection 2' as 'computecanada#cedar-dtn' from the drop down menu. Again authenticate your access using Compute Canada credentials. Navigate to the location where you want to transfer the file.
    • Select the file to be transferred from collection 1' and initiate the transfer process.

Use Globus Web Application to Share Files

You may grant access to a folder in your allocation on ARC to be used for uploading or sharing files with any individual with a globus account, either through ComputeCanada or their own institution.

Please see https://docs.globus.org/how-to/share-files/


Transferring Large Datasets

Using screen and rsync

If you want to transfer a large amount of data from a remote Unix system to ARC you can use rsync to handle the transfer. However, you will have to keep your SSH session from your workstation connected during the entire transfer which is often not convenient or not feasible.

To overcome this one can run the rsync transfer inside a screen virtual session on ARC. screen creates an SSH session local to ARC and allows for reconnection from SSH sessions from your workstation.

To begin, login to ARC and start screen with the screen command:

# Login to ARC
$ ssh username@arc.ucalgary.ca

# Start a screen session
$ screen

# While in the new screen session, start the transfer with rsync.
$ rsync -axv ext_user@external.system:path/to/remote/data  .

# Disconnect from the screen session with the hotkey 'Ctrl-a d'
# You may now disconnect from ARC or close the lid of you laptop or turn off the computer.

To check if the transfer has been finished.

# Login to ARC
$ ssh username@arc.ucalgary.ca

# Reconnect to the screen session
$ screen -r

# If the transfer has been finished close the screen session.
$ exit

# If the transfer is still running, disconnect from the screen session with the hotkey 'Ctrl-a d'

Very large files

If the files are large and the transfer speed is low the transfer may fail before the file has been transferred. rsync may not be of help here, as it will not restart the file transfer (have not tested recently).

The solution may be to split the large file into smaller chunks, transfer them using rsync and then join them on the remote system (ARC for example):

# Large file is 506MB in this example.
$ ls -l t.bin
-rw-r--r-- 1 drozmano drozmano 530308481 Jun  8 11:06 t.bin

# split the file:
$ split -b 100M t.bin t.bin_chunk.

# Check the chunks.
$ ls -l t.bin_chunk.*
-rw-r--r-- 1 drozmano drozmano 104857600 Jun  8 11:09 t.bin_chunk.aa
-rw-r--r-- 1 drozmano drozmano 104857600 Jun  8 11:09 t.bin_chunk.ab
-rw-r--r-- 1 drozmano drozmano 104857600 Jun  8 11:09 t.bin_chunk.ac
-rw-r--r-- 1 drozmano drozmano 104857600 Jun  8 11:09 t.bin_chunk.ad
-rw-r--r-- 1 drozmano drozmano 104857600 Jun  8 11:09 t.bin_chunk.ae
-rw-r--r-- 1 drozmano drozmano   6020481 Jun  8 11:09 t.bin_chunk.af

# Transfer the files:
$ rsync -axv t.bin_chunks.* username@arc.ucalgary.ca:

Then login to ARC and join the files:

$ cat t.bin_chunk.* > t.bin

$ ls -l 
-rw-r--r-- 1 drozmano drozmano 530308481 Jun  8 11:06 t.bin

Success.