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
computers:tricksandtips [2026/03/13 16:36] – [rsync limiting bandwidth] davidcomputers:tricksandtips [2026/03/13 16:43] (current) – [rclone] david
Line 391: Line 391:
 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** 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:+**Server Side:**
   - Start the server and use a non-standard port (using sudo to dig down into permissions of all files)<code>   - 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 sudo /your/local/path/bin/rclone serve http /Directory/to/share --addr :8080
 </code> </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>
 ===== rsync limiting bandwidth ===== ===== rsync limiting bandwidth =====
  
computers/tricksandtips.txt · Last modified: by david