Changes between Version 18 and Version 19 of cypress/FileTransfer


Ignore:
Timestamp:
04/04/21 12:54:12 (3 years ago)
Author:
cbaribault
Comment:

In the section Running rclone…, added missing initial step, module load rclone. Also, added Cypress command prompt as needed to examples.

Legend:

Unmodified
Added
Removed
Modified
  • cypress/FileTransfer

    v18 v19  
    29292. In your Cypress session enter the following commands.
    3030{{{
    31 module load rclone
    32 rclone config
     31[tulaneID@cypress1 ~]$ module load rclone
     32[tulaneID@cypress1 ~]$ rclone config
    3333}}}
    34343. At the prompt '''...No remotes found - make a new one...''', enter {{{n}}} for '''New remote'''.
     
    7474
    7575==== Running rclone on Cypress ====
    76 1. To list the entire contents in your Box account with configured Box remote name '''TU-Box'''...
     76
     77The following examples assume that you've already performed the configuration as above using the remote name '''TU-Box''' for your Tulane Box account.
     78
     791. If you haven't done so already from the above, load the module rclone.
    7780{{{
    78 rclone ls TU-Box:
     81[tulaneID@cypress1 ~]$ module load rclone
    7982}}}
    80 2. To list the contents of a top-level folder in your Box account with configured Box remote name '''TU-Box'''...
     832. To list the entire contents in your Tulane Box account...
    8184{{{
    82 rclone ls TU-Box:<top-level-folder>
     85[tulaneID@cypress1 ~]$ rclone ls TU-Box:
    8386}}}
    84 3. To copy the contents of a top-level folder in your Box account with configured Box remote name '''TU-Box''' to your current Cypress working directory...
     873. To list the contents of a top-level folder in your Tulane Box account...
    8588{{{
    86 rclone copy TU-Box:<top-level-folder> .
     89[tulaneID@cypress1 ~]$ rclone ls TU-Box:<top-level-folder>
    8790}}}
    88 4. To copy the file test.txt in your current Cypress working directory to a top-level folder in your Box account with configured Box remote name '''TU-Box'''.
     914. To copy the contents of a top-level folder in your Tulane Box account to your current Cypress working directory...
    8992{{{
    90 rclone copy test.txt TU-Box:<top-level-folder>
     93[tulaneID@cypress1 ~]$ rclone copy TU-Box:<top-level-folder> .
    9194}}}
    92 5. To simply list the available subcommands under rclone.
     955. To copy the file test.txt in your current Cypress working directory to a top-level folder in your Tulane Box account.
    9396{{{
    94 rclone --help
     97[tulaneID@cypress1 ~]$ rclone copy test.txt TU-Box:<top-level-folder>
     98}}}
     996. To simply list the available subcommands under rclone.
     100{{{
     101[tulaneID@cypress1 ~]$ rclone --help
    95102}}}
    96103
     
    119126
    120127{{{
    121 quota -s -f /home
     128[tulaneID@cypress1 ~]$ quota -s -f /home
    122129}}}
    123130
     
    135142
    136143{{{
    137 /lustre/project/<your-group-name>
     144[tulaneID@cypress1 ~]$ /lustre/project/<your-group-name>
    138145}}}
    139146
     
    143150
    144151{{{
    145 lfs quota -h -g `id -gn` /lustre
     152[tulaneID@cypress1 ~]$ lfs quota -h -g `id -gn` /lustre
    146153}}}
    147154
     
    149156
    150157{{{
    151 lfs quota -h -u `id -un` /lustre
     158[tulaneID@cypress1 ~]$ lfs quota -h -u `id -un` /lustre
    152159}}}
    153160