Tue Jul 02, 2013 11:36 am
Might need a little more info..
What you are saying is mostly correct, if you wanted to run rsync to sync something else you can put a new line in the crontab file which is almost the same as the old one.
The difference would be that if you need to talk to a remote computer, that remote computer needs some way of talking back.
I think with rsync there are two ways, either running rsync or an SSH server on the PC, both of which would allow rsync to talk to the PC. Having rsync running on both machines would be best, but if you happen to have an SSH server on the PC already it should be able to use it.
The line in the crontab file would then be something like this:
0 5 * * * rsync -av USERNAME@HOST:SRC DEST
Where USERNAME is the login name, HOST is the hostname of the PC and SRC is the directory to be copied, DEST is the destination on the Pi.
Hope this helps,
post back with details of the system ruining on the PC if this explanation isn't detailed enough for you.