Hi,
does the following version support rsync to external device?
Model: Open-E NAS-R3
Version: 4.32.DB00000000.2862
Thanks ivan
This is the DSS section of the forum. For future please post all related NAS-R3 Enterprise subjects in the proper section of the forum.
If you are asking if the NAS-R3 Enterprise will work with another rsync server then yes. Try the following:
rsync command used to synchronize from your operating system to NAS-R3 Enterprise server can look similar to this:
cd $SOURCE_DIR
export RSYNC_PASSWORD=${PASSWORD}
rsync -raRx --acls --xattrs --whole-file --delete --force "./"
"$LOGIN@$RSYNC_DEST_IP::$DEST_SHARE"
rsync command used to synchronize from NAS-R3 Enterprise to your operating system (executed on your operating system) can look similar to this:
cd $DEST_DIR
export RSYNC_PASSWORD=${PASSWORD}
rsync -raRx --acls --xattrs --whole-file --delete --force "$LOGIN@$RSYNC_SOURCE_IP::$SOURCE_SHARE" "./"
While using rsync without password please unset RSYNC_PASSWORD variable.
For more information about switches in rsync command please refer to your rsync manual.
All the best,
Todd Maxwell
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules