I had a similar issue when going from Debian 10 to Debian 11, where the
upgrade kept the old settings in place.

In the end, these changes had to be made:
- Install backuppc-rsync debian package
- Define it's location in the main config.pl file (/etc/backuppc.config.pl
in our case).  The line required below:


*$Conf{RsyncBackupPCPath} = '/usr/libexec/backuppc-rsync/rsync_bpc';*
This got us to a position where most backups worked, but some would still
fail from older Debian Stretch and Ubuntu 16.04 installs.  For these to
work, we had to change our configs from whatever custom config we had, to
be as below which is closer to the current BPC version 4 default config:
















*$Conf{RsyncArgs} = [    '--super',    '--recursive',    '--protect-args',
  '--numeric-ids',    '--perms',    '--owner',    '--group',    '-D',
'--times',    '--links',    '--hard-links',    '--delete',    '--partial',
  '--log-format=log: %o %i %B %8U,%8G %9l %f%L',    '--stats',];*
The above was done inside all of the .pl config files for all hosts, as we
use a separate file per host.

Hope this helps!

On Mon, Jul 11, 2022 at 9:41 AM Dave Sherohman via BackupPC-users <
backuppc-users@lists.sourceforge.net> wrote:

> Since you mentioned different versions of rsync, I assume you already
> checked this, but, just in case:  Double-check that rsync is still
> installed on the deb11 system.  I upgraded a ton of systems from deb9 to
> deb11 earlier in the summer, and apt decided to uninstall rsync during
> the upgrades on most of them.
>
> On 7/10/22 12:23, Taste-Of-IT wrote:
> > Hi all,
> >
> > i have latest BackupPC running on Debian 10. I upgraded one system to
> Debian 11. Backup before running well and without problems. After upgrading
> the client it fails with these errors:
> >
> > Got fatal error during xfer (rsync error: unexplained error (code 255)
> at io.c(820) [generator=3.1.3beta1])
> > Backup aborted (rsync error: unexplained error (code 255) at io.c(820)
> [generator=3.1.3beta1])
> >
> > I searched and got different solution. One is the diffent speed of BPC
> and the clilent, but thats not the case here. Another is the different
> versions of rsync, which i use. But i didnt find a solution for that.
> >
> > Has anyone a solution for that?
> >
> > thx
> >
> > Taste
> >
> >
> >
> > _______________________________________________
> > BackupPC-users mailing list
> > BackupPC-users@lists.sourceforge.net
> > List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
> > Wiki:    https://github.com/backuppc/backuppc/wiki
> > Project: https://backuppc.github.io/backuppc/
>
>
> _______________________________________________
> BackupPC-users mailing list
> BackupPC-users@lists.sourceforge.net
> List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
> Wiki:    https://github.com/backuppc/backuppc/wiki
> Project: https://backuppc.github.io/backuppc/
>
_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    https://github.com/backuppc/backuppc/wiki
Project: https://backuppc.github.io/backuppc/

Reply via email to