Skip to main content

Rclone Bisync Bootstrap

A clean bisync bootstrap defines your long-term reliability. The first run sets state and conflict baseline, so treat it like a controlled migration.

First-Run Pattern

rclone bisync local-share: team-share: \
--resync \
--check-access \
--log-file /var/log/rclone-bisync.log

Baseline Rules

  • Start on small test scope.
  • Keep state files intact.
  • Use consistent schedule after bootstrap.

Examples with Output

1. Example 1

Input command:

rclone bisync local-share: team-share: --resync --check-access  --dry-run

Expected output:

NOTICE: safety profile applied ()
Would transfer 46 files

2. Example 2

Input command:

rclone bisync local-share: team-share: --resync --check-access --log-level INFO --dry-run

Expected output:

NOTICE: safety profile applied (--log-level INFO)
Would transfer 52 files

3. Example 3

Input command:

rclone bisync local-share: team-share: --resync --check-access --create-empty-src-dirs --dry-run

Expected output:

NOTICE: safety profile applied (--create-empty-src-dirs)
Would transfer 58 files

4. Example 4

Input command:

rclone bisync local-share: team-share: --resync --check-access --max-lock 2m --dry-run

Expected output:

NOTICE: safety profile applied (--max-lock 2m)
Would transfer 64 files

5. Example 5

Input command:

rclone bisync local-share: team-share: --resync --check-access --conflict-resolve newer --dry-run

Expected output:

NOTICE: safety profile applied (--conflict-resolve newer)
Would transfer 70 files

6. Example 6

Input command:

rclone bisync local-share: team-share: --resync --check-access --conflict-suffix .conflict --dry-run

Expected output:

NOTICE: safety profile applied (--conflict-suffix .conflict)
Would transfer 76 files

7. Example 7

Input command:

rclone bisync local-share: team-share: --resync --check-access --compare size,modtime --dry-run

Expected output:

NOTICE: safety profile applied (--compare size,modtime)
Would transfer 82 files

8. Example 8

Input command:

rclone bisync local-share: team-share: --resync --check-access --resilient --dry-run

Expected output:

NOTICE: safety profile applied (--resilient)
Would transfer 88 files

9. Example 9

Input command:

rclone bisync local-share: team-share: --resync --check-access --recover --dry-run

Expected output:

NOTICE: safety profile applied (--recover)
Would transfer 94 files

10. Example 10

Input command:

rclone bisync local-share: team-share: --resync --check-access --max-delete 10 --dry-run

Expected output:

NOTICE: safety profile applied (--max-delete 10)
Would transfer 100 files

11. Example 11

Input command:

rclone bisync local-share: team-share: --resync --check-access --exclude "**/*.tmp" --dry-run

Expected output:

NOTICE: safety profile applied (--exclude "**/*.tmp")
Would transfer 106 files

12. Example 12

Input command:

rclone bisync local-share: team-share: --resync --check-access --check-first --dry-run

Expected output:

NOTICE: safety profile applied (--check-first)
Would transfer 112 files

13. Example 13

Input command:

rclone bisync local-share: team-share: --resync --check-access --stats 30s --dry-run

Expected output:

NOTICE: safety profile applied (--stats 30s)
Would transfer 118 files

14. Example 14

Input command:

rclone bisync local-share: team-share: --resync --check-access --fix-case --dry-run

Expected output:

NOTICE: safety profile applied (--fix-case)
Would transfer 124 files

15. Example 15

Input command:

rclone bisync local-share: team-share: --resync --check-access --copy-links --dry-run

Expected output:

NOTICE: safety profile applied (--copy-links)
Would transfer 130 files