====== Configurations machines par machines ====== Il y a 5 valeurs possibles pour la méthode de transfert : $Conf{XferMethod} = 'smb'; La plus facile pour Windows [[http://backuppc.sourceforge.net/faq/BackupPC.html#general_perpc_configuration_settings|selon la FAQ]]. $Conf{XferMethod} = 'rsync'; $Conf{XferMethod} = 'rsyncd'; $Conf{XferMethod} = 'tar'; $Conf{XferMethod} = 'archive'; ====== Mes exemples ====== ===== ssh+rsync ===== # # 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', '/mnt', '/media' ]; ===== sudo+rsync ===== # # 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', '/mnt', '/media' ];