Linux: Difference between revisions

431 bytes removed ,  31 March 2020
Line 229: Line 229:


===rclone===
===rclone===
Similar to rsync but for cloud services such as Dropbox and Google Drive
{{ main | rclone }}
<syntaxhighlight lang="bash">
Similar to rsync but for cloud services such as Dropbox and Google Drive.<br>
sudo apt install rclone
I recommend installing from their website to get the latest version.
rclone config
</syntaxhighlight>
 
;Resources
* [https://rclone.org/flags/ Rclone Flags]
 
====Mount a drive====
[https://rclone.org/commands/rclone_mount/ Documentation]<br>
Mount to an existing empty local folder
<syntaxhighlight lang="bash">
rclone mount remote:path/to/files /path/to/local/mount
</syntaxhighlight>
 
====Sync====
[https://rclone.org/commands/rclone_sync/ Documentation]
<syntaxhighlight lang="bash">
rclone sync source:path dest:path
</syntaxhighlight>


===scp===
===scp===