Kyle Hargraves wrote:
> what is the easiest way to get an automatically generated .tar file
> on box 1 to box 2 via a command run by cron each night on box 1 - or
> possibly box 2
>
> typically, the .tar file will be a backup of user directories on box 1
> and desire is to "store" it on box 2 - residing on a separate network.
Look into "man rsync". Rsync makes tar-ring unnecessary.
It's best to use rsync <http://rsync.samba.org/> through ssh.
rsync -avr --rsh=ssh <source-directory>/
<user@host-in-dmz>/<dest-directory>/
<dest-directory> must exist.
To erase files in destination that don't exist anymore in
source, use the --delete , use it with the -n option first to
see what it will erase.
*********************************************************************
Signed,
SoloCDM
--
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.