BackupPC-users

Re: [BackupPC-users] how to have 1 full backup + incrementals forever?

2009-10-20 12:59:15
Subject: Re: [BackupPC-users] how to have 1 full backup + incrementals forever?
From: Tony Molloy <tony.molloy AT ul DOT ie>
To: "General list for user discussion, questions and support" <backuppc-users AT lists.sourceforge DOT net>
Date: Tue, 20 Oct 2009 17:40:53 +0100
On Tuesday 20 October 2009 17:10:51 Adam Williams wrote:
> I'm confused on what my configuration parameters should be then, to keep
> a full every other week, plus incrementals for that two week period, but
> retain forever.  does this look correct?
>
> $Conf{FullKeepCnt} = ['0', '2'];
> $Conf{FullKeepCntMin} = '1';
> $Conf{FullAgeMax} = '9999999999999';
> $Conf{IncrKeepCnt} = '13';
> $Conf{IncrKeepCntMin} = '1';
> $Conf{IncrAgeMax} = '13';
> $Conf{FullPeriod} = '13.97';
> $Conf{IncrPeriod}  = 1;
> $Conf{IncrLevels} =
> ['1','2','3','4','5','6','7','8','9','10','11','12','13'];
>


Try something like the following

#    Full backup every 2 weeks
$Conf{FullPeriod} = 13.67;

#    Keep 4 backups @ 2 weeks
#                 4 @ 4 weeks
#                 4 @ 8 weeks
#                 4 @ 16 weeks
#                 2 @ 32 weeks
#                   1 @ 64 weeks
#    Over 4 years backups  ( 248 weeks )
$Conf{FullKeepCnt} = [4, 4, 4, 4, 2, 1];

#    Incremental backup daily and keep 13
$Conf{IncrPeriod} = 0.67;
$Conf{IncrKeepCnt} = 13;
$Conf{IncrLevels} = [1, 3, 5];


Regards,

Tony
> Michael Stowe wrote:
> > Since files are pooled, there's really no downside to you doing full
> > backups every 7 days and incrementals every night, and just increasing
> > your retention periods to something you can live with.
> >
> > If you're going to keep all those incrementals, I wouldn't recommend
> > doing full backups any less frequently than every two weeks or so, which
> > is often the point at which they become as slow or slower than full
> > backups.
>
> ---------------------------------------------------------------------------
>--- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is
> the only developer event you need to attend this year. Jumpstart your
> developing skills, take BlackBerry mobile applications to market and stay
> ahead of the curve. Join us from November 9 - 12, 2009. Register now!
> http://p.sf.net/sfu/devconference
> _______________________________________________
> BackupPC-users mailing list
> BackupPC-users AT lists.sourceforge DOT net
> List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
> Wiki:    http://backuppc.wiki.sourceforge.net
> Project: http://backuppc.sourceforge.net/



-- 

Dept. of Comp. Sci.
University of Limerick.

------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
BackupPC-users mailing list
BackupPC-users AT lists.sourceforge DOT net
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/