Hi, I'm trying to automate backing up from one computer to another with rsync. So far I can push the data, except it prompts for a password. What do I do to make it unattended?
Second, I would like to pull that data, if I have a choice. Here is the script that would work if it didn't ask for a password: #!/bin/sh /usr/bin/rsync -gHlportu --rsh="ssh -l admin" /etc/* [EMAIL PROTECTED]:/mnt/Backup/Filter/etc/ This script times out instead of pulling the data: #!/bin/sh /usr/bin/rsync -gHlportu filter:/home/* /mnt/Backup/Filter/home/ Is somebody doing this kind of thing here? Thanks Bob -- Assured Computing, Inc. When you need to be sure. http://www.assuredcomp.com/ P.O. Box 40814 Eugene, OR 97404 Voice - 541-868-0331 FAX - 541-463-1627 _______________________________________________ EUGLUG mailing list [EMAIL PROTECTED] http://www.euglug.org/mailman/listinfo/euglug
