User Tools

Site Tools


computing:windows:sync_tools

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
computing:windows:sync_tools [2022/12/20 13:03]
gcooper
computing:windows:sync_tools [2024/03/09 09:17] (current)
gcooper
Line 11: Line 11:
 ===== Rclone ===== ===== Rclone =====
  
-**Home**: https://rclone.org+**Docs**: https://rclone.org/docs
  
-**Forum**: https://forum.rclone.org/+**Filtering**: https://rclone.org/filtering/ 
 + 
 +**Forum**: https://forum.rclone.org
  
   * **Command-line tool to manage files on cloud storage**   * **Command-line tool to manage files on cloud storage**
   * Multi-platform, including Windows, Linux and MacOS   * Multi-platform, including Windows, Linux and MacOS
   * No installation required for Windows, just unzip into folder of your choice   * No installation required for Windows, just unzip into folder of your choice
 +
 +<note tip>**This tool seems to offer the best performance when uploading/moving/migrating large shares to/from cloud storage.**</note>
  
 ==== Configure Remote ==== ==== Configure Remote ====
Line 27: Line 31:
 </file> </file>
  
-Choose WebDAV for many cloud services, enter the WebDAV URL, username and password.+Choose **WebDAV** for many cloud services, enter the WebDAV URL, username and password.
  
 <note tip> <note tip>
-VA Cloud Storage URL: https://cloud.virtualarchitects.com/remote.php/dav/files/<username/+VA Cloud Storage URL: 
 + 
 +''https://cloud.virtualarchitects.com/remote.php/dav/files/<username>/''
 </note> </note>
  
-<note>Copy: copy files from source to dest, skipping identical files+<note>**Copy**: copy files from source to dest, skipping identical files, does not delete files on destination
  
-Sync: copy files from source to dest, delete anything else on destination</note>+**Sync**make destination the sames as source, delete anything else on destination</note>
  
 ==== Copy ==== ==== Copy ====
  
-Example copy a drive to the cloud, excluding dot files and temp files:+Example copy a drive to the cloud, excluding dot files and some others:
  
 <file> <file>
-.\rclone.exe copy x:\ remotename:foldername --exclude '.**' --exclude=**.tmp** --progress --log-file=foldername.txt --dry-run+.\rclone.exe copy x:\ remotename:foldername --exclude '.**' --exclude=**.tmp** --exclude *.ffs_lock --exclude Thumbs.db --progress --log-file=foldername.txt --dry-run
 </file> </file>
  
Line 48: Line 54:
 --dry-run --dry-run
 --progress --progress
---log-file mylogfile.txt 
---log-level INFO 
 </file> </file>
  
-https://rclone.org/docs/#log-level-level+==== Sync ====
  
-Log levels are, from least verbose to most: ERROR or NOTICE or INFO or DEBUG+<file> 
 +.\rclone.exe sync ... 
 +</file>
  
-The defaultNOTICE, is usually sufficient.+The sync subcommand **makes the source and destination identical**modifying only the destination.  Files in the destination not in source are deleted.
  
 ==== Exclusions ==== ==== Exclusions ====
Line 66: Line 72:
 <file> <file>
 --exclude '.**' --exclude '.**'
 +</file>
 +
 +==== Logging ====
 +
 +https://rclone.org/docs/#log-level-level
 +
 +Log levels are, from least verbose to most: **ERROR** or **NOTICE** or **INFO** or **DEBUG**.  The default, NOTICE, is usually sufficient.
 +
 +<file>
 +--log-file mylogfile.txt
 +--log-level INFO
 </file> </file>
computing/windows/sync_tools.1671566627.txt.gz · Last modified: 2022/12/20 13:03 by gcooper