Changes between Version 18 and Version 19 of cypress/FileTransfer
- Timestamp:
- 04/04/21 12:54:12 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/FileTransfer
v18 v19 29 29 2. In your Cypress session enter the following commands. 30 30 {{{ 31 module load rclone32 rclone config31 [tulaneID@cypress1 ~]$ module load rclone 32 [tulaneID@cypress1 ~]$ rclone config 33 33 }}} 34 34 3. At the prompt '''...No remotes found - make a new one...''', enter {{{n}}} for '''New remote'''. … … 74 74 75 75 ==== Running rclone on Cypress ==== 76 1. To list the entire contents in your Box account with configured Box remote name '''TU-Box'''... 76 77 The following examples assume that you've already performed the configuration as above using the remote name '''TU-Box''' for your Tulane Box account. 78 79 1. If you haven't done so already from the above, load the module rclone. 77 80 {{{ 78 rclone ls TU-Box: 81 [tulaneID@cypress1 ~]$ module load rclone 79 82 }}} 80 2. To list the contents of a top-level folder in your Box account with configured Box remote name '''TU-Box'''...83 2. To list the entire contents in your Tulane Box account... 81 84 {{{ 82 rclone ls TU-Box:<top-level-folder> 85 [tulaneID@cypress1 ~]$ rclone ls TU-Box: 83 86 }}} 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...87 3. To list the contents of a top-level folder in your Tulane Box account... 85 88 {{{ 86 rclone copy TU-Box:<top-level-folder> . 89 [tulaneID@cypress1 ~]$ rclone ls TU-Box:<top-level-folder> 87 90 }}} 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'''.91 4. To copy the contents of a top-level folder in your Tulane Box account to your current Cypress working directory... 89 92 {{{ 90 rclone copy test.txt TU-Box:<top-level-folder> 93 [tulaneID@cypress1 ~]$ rclone copy TU-Box:<top-level-folder> . 91 94 }}} 92 5. To simply list the available subcommands under rclone.95 5. To copy the file test.txt in your current Cypress working directory to a top-level folder in your Tulane Box account. 93 96 {{{ 94 rclone --help 97 [tulaneID@cypress1 ~]$ rclone copy test.txt TU-Box:<top-level-folder> 98 }}} 99 6. To simply list the available subcommands under rclone. 100 {{{ 101 [tulaneID@cypress1 ~]$ rclone --help 95 102 }}} 96 103 … … 119 126 120 127 {{{ 121 quota -s -f /home128 [tulaneID@cypress1 ~]$ quota -s -f /home 122 129 }}} 123 130 … … 135 142 136 143 {{{ 137 /lustre/project/<your-group-name>144 [tulaneID@cypress1 ~]$ /lustre/project/<your-group-name> 138 145 }}} 139 146 … … 143 150 144 151 {{{ 145 lfs quota -h -g `id -gn` /lustre152 [tulaneID@cypress1 ~]$ lfs quota -h -g `id -gn` /lustre 146 153 }}} 147 154 … … 149 156 150 157 {{{ 151 lfs quota -h -u `id -un` /lustre158 [tulaneID@cypress1 ~]$ lfs quota -h -u `id -un` /lustre 152 159 }}} 153 160