Rclone: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Hityangsir (talk | contribs) No edit summary |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 18: | Line 18: | ||
{{App_Description|app={{#var:app}}|url={{#var:url}}|name={{#var:app}}}}|}} | {{App_Description|app={{#var:app}}|url={{#var:url}}|name={{#var:app}}}}|}} | ||
Rclone is a command line program to manage files on cloud storage. | Rclone is a command line program to manage files on cloud storage, including Amazon Drive, Backblaze B2, Citrix Sharefile, Dropbox, Google Cloud Storage, Google Photos, Google Drive, Microsoft Azure Blob Storage, OpenDrive, Zoho, and more. | ||
<!--Modules--> | <!--Modules--> | ||
Line 34: | Line 34: | ||
==Examples== | ==Examples== | ||
===Add DropBox Remote=== | ===Add DropBox Remote=== | ||
<div class="mw-collapsible mw-collapsed" style="width:70%; padding: 5px; border: 1px solid gray;"> | |||
''Expand to see an example to add DropBox Remote.'' | |||
<div class="mw-collapsible-content" style="padding: 5px;"> | |||
I've verified that the https://rclone.org/dropbox/ and https://rclone.org/drive/ procedures worked on HiPerGator. Here's dropbox remote setup: | I've verified that the https://rclone.org/dropbox/ and https://rclone.org/drive/ procedures worked on HiPerGator. Here's dropbox remote setup: | ||
Line 48: | Line 50: | ||
Tab1: | Tab1: | ||
<pre> | |||
$ rclone config | $ rclone config | ||
Current remotes: | Current remotes: | ||
Line 101: | Line 103: | ||
2022/09/28 15:29:19 NOTICE: Log in and authorize rclone for access | 2022/09/28 15:29:19 NOTICE: Log in and authorize rclone for access | ||
</pre> | |||
<At this point copy the link above and paste it into 'firefox' URL bar. Log in and authorize the connection. Return to Tab1> | <At this point copy the link above and paste it into 'firefox' URL bar. Log in and authorize the connection. Return to Tab1> | ||
<pre> | |||
2022/09/28 15:29:19 NOTICE: Waiting for code... | 2022/09/28 15:29:19 NOTICE: Waiting for code... | ||
2022/09/28 15:30:47 NOTICE: Got code | 2022/09/28 15:30:47 NOTICE: Got code | ||
Line 129: | Line 131: | ||
s) Set configuration password | s) Set configuration password | ||
q) Quit config | q) Quit config | ||
</pre> | |||
Test the Dropbox remote: | Test the Dropbox remote: | ||
<pre> | |||
$ rclone lsd dbox: | $ rclone lsd dbox: | ||
-1 2022-09-28 15:31:03 -1 GCP 2019 Photos | -1 2022-09-28 15:31:03 -1 GCP 2019 Photos | ||
Line 137: | Line 139: | ||
-1 2022-09-28 15:31:03 -1 Sent files | -1 2022-09-28 15:31:03 -1 Sent files | ||
-1 2022-09-28 15:31:03 -1 UFIT-RC-SysSecPlan | -1 2022-09-28 15:31:03 -1 UFIT-RC-SysSecPlan | ||
</pre> | |||
To copy a local file/directory to a remote dropbox location: | |||
<pre> | |||
$ rclone copy /path/to/local/source remote:/path/to/remote/ | |||
</pre> | |||
</div></div> | |||
|}} | |}} | ||
<!--Job Scripts--> | <!--Job Scripts--> |
Latest revision as of 20:07, 30 October 2023
Description
Rclone is a command line program to manage files on cloud storage, including Amazon Drive, Backblaze B2, Citrix Sharefile, Dropbox, Google Cloud Storage, Google Photos, Google Drive, Microsoft Azure Blob Storage, OpenDrive, Zoho, and more.
Environment Modules
Run module spider rclone
to find out what environment modules are available for this application.
System Variables
- HPC_RCLONE_DIR - installation directory
Additional Information
Examples
Add DropBox Remote
Expand to see an example to add DropBox Remote.