computers:tricksandtips
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| computers:tricksandtips [2026/03/13 16:36] – [rsync limiting bandwidth] david | computers:tricksandtips [2026/03/13 16:43] (current) – [rclone] david | ||
|---|---|---|---|
| Line 391: | Line 391: | ||
| If you want to avoid ssh/ | If you want to avoid ssh/ | ||
| - | Server Side: | + | **Server Side:** |
| - Start the server and use a non-standard port (using sudo to dig down into permissions of all files)< | - Start the server and use a non-standard port (using sudo to dig down into permissions of all files)< | ||
| sudo / | sudo / | ||
| </ | </ | ||
| + | **Client Side:** | ||
| + | - **HDD - Spinny Disks on Both Sides** | ||
| + | - Use only 4 transfers at a time to keep heads from trashing < | ||
| + | sudo rclone sync RCLONE_CONFIG: | ||
| + | --metadata \ | ||
| + | --skip-links \ | ||
| + | --transfers 4 \ | ||
| + | --checkers 4 \ | ||
| + | --buffer-size 256M \ | ||
| + | --multi-thread-streams 4 \ | ||
| + | --log-file / | ||
| + | --log-level INFO \ | ||
| + | -P | ||
| + | </ | ||
| + | - **SSD - Solid State Drive to Solid State Drive** | ||
| + | - To pull using SSD many transfers at once are fine: < | ||
| + | sudo rclone sync RCLONE_CONFIG: | ||
| + | --metadata \ | ||
| + | --skip-links \ | ||
| + | --transfers 16 \ | ||
| + | --checkers 32 \ | ||
| + | --buffer-size 256M \ | ||
| + | --multi-thread-streams 8 \ | ||
| + | --log-file / | ||
| + | --log-level INFO \ | ||
| + | -P | ||
| + | </ | ||
| ===== rsync limiting bandwidth ===== | ===== rsync limiting bandwidth ===== | ||
computers/tricksandtips.txt · Last modified: by david
