NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
networkn
Apr 11, 2013Aspirant
Sync Backups <60 days old
Hi There! We backup 3 notebooks to a Ultra 2 Plus ReadyNAS, into 3 folders. We have 2 USB Hard Disks Rotated weekly offsite. I want to mirror the data on the NAS to the USB Hard Disks to a M...
StephenB
Apr 12, 2013Guru - Experienced User
If you have gigabit ethernet, then copying through a PC is likely faster then local USB. Though you do need to make sure the PC is on, etc.
With ssh
You can use that command to create an input file list for rsync (using --include-from=FILE).
Alternatively you could use find to move all files older than 90 days into an archival folder, and then use frontview's rsync backup job to copy the main folder. For instance,
Warning: I didn't test either command.
With ssh
find . -mtime -90should give you a list of all files in the current directory that were modified in the past 90 days.
You can use that command to create an input file list for rsync (using --include-from=FILE).
Alternatively you could use find to move all files older than 90 days into an archival folder, and then use frontview's rsync backup job to copy the main folder. For instance,
find . -mtime +90 -type f -exec mv -v {} $directory \; would move all older files into the $directory folder.Warning: I didn't test either command.
Related Content
NETGEAR Academy
Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!