Rclone: Difference between revisions

 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
rclone<br>
rclone is a super useful tool for copying files to cloud storage such as Google Drive or S3-based object stores.
rsync for cloud storage<br>
[https://rclone.org/ https://rclone.org/]<br>
[https://rclone.org/ https://rclone.org/]<br>
Rclone is often faster than the built in file explorer due to handling multiple transfers (e.g. <code>--transfers 25</code>).


==Install==
==Install==
You can download a deb or rpm from their website.<br>
See https://rclone.org/install/<br>
If you do not have sudo, you can download the binary and put it in your <code>$HOME/bin</code> folder.
For Linux, you can download a deb or rpm from their website.<br>
If you do not have sudo, you can download the binary and put it in your <code>$HOME/.local/bin</code> folder.


For Windows, rclone is also [https://chocolatey.org/packages/rclone available on Chocolatey]
For Windows, rclone is also [https://chocolatey.org/packages/rclone available on Chocolatey] and WinGET
<pre>
<pre>
choco install rclone winfsp -y
choco install rclone winfsp -y
Line 25: Line 27:
===Common Flags===
===Common Flags===
[https://rclone.org/flags/ flags]
[https://rclone.org/flags/ flags]
* <code>-n, --dry-run</code>
* <code>-P, --progress</code> show progress (transferred, ETA, elapsed)
* <code>-P, --progress</code> show progress (transferred, ETA, elapsed)
* <code>-n, --dry-run</code>
* <code>--stats-one-line</code> show only the total stats
* <code>--transfers N</code> do N simultaneous file transfers (defaults to 4)
* <code>--checkers N</code> (defaults to 8)


===Mount===
===Mount===
Line 42: Line 47:
** Just append <code>--vfs-cache-mode full</code> to the end of your mount.
** Just append <code>--vfs-cache-mode full</code> to the end of your mount.
**: The default cache is at <code>~/.cache/rclone/</code>.  
**: The default cache is at <code>~/.cache/rclone/</code>.  
** See [https://rclone.org/commands/rclone_mount/#file-caching rclone mount file caching] for more options.
** See [https://rclone.org/commands/rclone_mount/#vfs-file-caching vfs file caching] for more options.
* If you have unlimited data or are using a local mount, you may want to reduce the directory index cache time.
* If you have unlimited data or are using a local mount, you may want to reduce the directory index cache time.
** The default is <code>--dir-cache-time 5m0s</code> for 5 minutes.
** The default is <code>--dir-cache-time 5m0s</code> for 5 minutes.