User Tools

Site Tools


computers:tricksandtips

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
computers:tricksandtips [2026/03/06 18:56] – [Directory Sync with Unison] davidcomputers:tricksandtips [2026/03/13 16:43] (current) – [rclone] david
Line 386: Line 386:
 ignore = Name {.git,node_modules,*.tmp} ignore = Name {.git,node_modules,*.tmp}
 ignore = Path build ignore = Path build
 +</code>
 +===== rclone =====
 +
 +If you want to avoid ssh/encryption (say you are moving many terabytes over 10GBe) to keep from slowing down your network.  You can use **rclone**
 +
 +**Server Side:**
 +  - Start the server and use a non-standard port (using sudo to dig down into permissions of all files)<code>
 +sudo /your/local/path/bin/rclone serve http /Directory/to/share --addr :8080
 +</code>
 +
 +**Client Side:**
 +  - **HDD - Spinny Disks on Both Sides**
 +    - Use only 4 transfers at a time to keep heads from trashing <code>
 +sudo rclone sync RCLONE_CONFIG: /destination/directory \
 +    --metadata \
 +    --skip-links \
 +    --transfers 4 \
 +    --checkers 4 \
 +    --buffer-size 256M \
 +    --multi-thread-streams 4 \
 +    --log-file /somedir/log_file.log \
 +    --log-level INFO \
 +    -P
 +</code>
 +  - **SSD - Solid State Drive to Solid State Drive**
 +    - To pull using SSD many transfers at once are fine: <code>
 +sudo rclone sync RCLONE_CONFIG: /destination/directory \
 +    --metadata \
 +    --skip-links \
 +    --transfers 16 \
 +    --checkers 32 \
 +    --buffer-size 256M \
 +    --multi-thread-streams 8 \
 +    --log-file /somedir/log_file.log \
 +    --log-level INFO \
 +    -P
 </code> </code>
 ===== rsync limiting bandwidth ===== ===== rsync limiting bandwidth =====
computers/tricksandtips.1772823394.txt.gz · Last modified: by david