Skip to content

Instantly share code, notes, and snippets.

@troyfontaine
Created April 12, 2022 03:16
Show Gist options
  • Save troyfontaine/ae59cab9d4a90e46f28d94cb7cb614b4 to your computer and use it in GitHub Desktop.
Save troyfontaine/ae59cab9d4a90e46f28d94cb7cb614b4 to your computer and use it in GitHub Desktop.
Rsync commands for TrueNAS

Rsync Commands for use with TrueNAS

Due to the way TrueNAS is built-duplicating files using Rsync requires some special flags to allow it to work

The below example command has been used and verified as working with TrueNAS Scale

rsync -avrh -A --no-perms <SOURCE> <DESTINATION>

If you want to see progress, add in the flags

rsync -avrh -A --no-perms --progress <SOURCE> <DESTINATION>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment