> > What I'm not 
 > > getting to work is the actual tar command to work properly.  
 > 
 > any particular reason you're using tar instead of rsync? rsync works *much*
 > better, and is far more efficient.

unless you care about preserving hardlinks.  which probably isn't
why the original poster is using it, but might be.

 > $Conf{XferMethod} = 'tar';
 > $Conf{TarClientPath} = '/bin/tar';
 > $Conf{TarShareName} = '/';
 > $Conf{TarClientCmd} = 'ssh -q -x -n -l root warrior';
 > $Conf{BackupFilesExclude} = '/proc';
 > 

i don't think your tar client command is complete -- there's no "tar"
there.  mine (which is in conf/config.pl, not in each host's
config file) looks like this:

  $Conf{TarClientCmd} = '$sshPath -x -q -n -l root $host'
                    . ' $tarPath --one-file-system -c -v -f - -C $shareName+'
                    . ' --totals';

note that this includes the full ssh'ed invocation of tar.

paul
=---------------------
 paul fox, [EMAIL PROTECTED] (arlington, ma, where it's 70.3 degrees)


-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
BackupPC-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/

Reply via email to