3 | | ARSF commonly deliver data via FTP. This allows PIs faster access to data and easier distribution across multiple institutions. While it is possible to download data using a web browser (e.g., IE, Chrome) for large files it is often better to use a specialised FTP client. For Windows / OS X we recommend [https://cyberduck.io/?l=en Cyberduck], for Linux we recommend using [http://lftp.yar.ru/desc.html lftp] from the command line. However, a number of other clients are available. |
| 3 | ARSF commonly deliver data via FTP. This allows PIs faster access to data and easier distribution across multiple institutions. While it is possible to download data using a web browser (e.g., IE, Chrome) for large files it is often better to use a specialised FTP client. For Windows / OS X we recommend [https://cyberduck.io/?l=en Cyberduck], for Linux we recommend using [http://lftp.yar.ru/desc.html lftp] from the command line. However, a number of other clients are available. |
| 4 | |
| 5 | == Cyberduck (Windows / OS X) == |
| 6 | |
| 7 | * Download Cyberduck from https://cyberduck.io/?l=en and follow the instructions to install. |
| 8 | * Open Cyberduck (yellow duck icon) and click on the 'Open Connection' icon in the top left corner. |
| 9 | * Enter the address in the 'Server' box and username and password (these are provided in delivery email) and click 'Connect' |
| 19 | [[Image(cyberduck3a_get_info.png, width=40%, align=center)]] |
| 20 | |
| 21 | * In the Info box select 'Calculate' to get the size of the directory. |
| 22 | |
| 23 | [[Image(cyberduck3b_get_size.png, width=20%, align=center)]] |
| 24 | |
| 25 | * Right click on folder(s) and select 'Download to', select a folder on a drive with sufficient storage to download the files to. |
| 26 | |
| 27 | [[Image(cyberduck4_download_to.png, width=40%, align=center)]] |
| 28 | |
| 29 | * A transfer window will open to show progress. If the transfer is interupted select the 'Resume' button from the top left of the transfers window. |
| 30 | |
| 31 | [[Image(cyberduck5_resume.png , width=20%, align=center)]] |
| 32 | |
| 33 | == Using lftp (Linux) == |
| 34 | |
| 35 | |
| 36 | * If lftp is not already installed install using using one of the following commands (depending on distribution) |
| 37 | {{{ |
| 38 | sudo yum install lftp # Fedora, CentOS, RedHat etc., |
| 39 | |
| 40 | sudo apt-get install lftp # Ubuntu, Debian, Mint |
| 41 | }}} |
| 42 | * Change to the directory you wish to download the files to. |
| 43 | * Type `lftp` and the line from your email. For example: |
| 44 | {{{ |
| 45 | lftp ftp://arsf18:PASSWORD@ftp.rsg.pml.ac.uk/ |
| 46 | }}} |
| 47 | * You can get a list of directories using '`ls`' |
| 48 | * To download a folder type: |
| 49 | {{{ |
| 50 | mirror EUFAR15_38-169a-hyperspectral-20151015 |
| 51 | }}} |
| 52 | |
| 53 | * Once the download has finished type '`exit`' to exit. |