Ceci est une ancienne révision du document !
Il y a 5 valeurs possibles pour la méthode de transfert :
$Conf{XferMethod} = 'smb';
La plus facile pour Windows selon la FAQ.
$Conf{XferMethod} = 'rsync';
$Conf{XferMethod} = 'rsyncd';
$Conf{XferMethod} = 'tar';
$Conf{XferMethod} = 'archive';
#
# ssh+rsync
#
$Conf{XferMethod} = 'rsync';
$Conf{RsyncClientCmd} = 'nice -n 19 $sshPath -q -x -l root $host nice -n 19 $rsyncPath $argList+';
$Conf{BackupFilesExclude} = [ '/proc', '/sys', '/var/local/unique', 'secring.gpg' ];
#
# sudo+rsync
#
$Conf{XferMethod} = 'rsync';
$Conf{RsyncClientCmd} = 'nice -n 19 sudo $rsyncPath $argList+';
$Conf{RsyncClientRestoreCmd} = 'sudo $rsyncPath $argList+';
$Conf{BackupFilesExclude} = [ '/proc', '/sys', '/var/local/unique', 'secring.gpg' ];