Re: Doubts on incremental backup and command repetition

2015-09-03 Thread Kevin Korb
isn't doing. I would suggest using --link-dest instead of --compare-dest or --backup On 09/03/2015 08:45 AM, Celso de Sousa Junior wrote: > Hi, > > I am trying to use rsync for incremental backup and I am facing > some issues. I would like to ask your help to understand what is &

Doubts on incremental backup and command repetition

2015-09-03 Thread Celso de Sousa Junior
Hi, I am trying to use rsync for incremental backup and I am facing some issues. I would like to ask your help to understand what is going on and have the proper command line. 1) my goal is I the following folders: ./dest: file3.txt ./orig: file1.txt   file10.txt  file2.txt   file20.txt

Re: incremental backup to nas server

2011-12-29 Thread Dan Stromberg
This is perhaps more a matter of which rsync wrapper you choose, than rsync itself. rsync provides just enough functionality to enable this kind of behavior, if your wrapper feeds it the right directories to work on. I used to use my Backup.rsync wrapper to get good resumption of interrupted back

incremental backup to nas server

2011-12-28 Thread ~D
Hi, I like to use rsync for backup from Desktop to my nas server. - I can setup an cron job at the server, so rsync starts on the server side to backup from my desktop to the server. But what if I shutdown my Desktop? Can rsync handle interruptions in a good way or is there a better solution?

Re: Using rsync as an incremental backup

2011-06-26 Thread Henri Shustak
> I'm using rsync to do an incremental backup of my desktop here, to a > remote server as follows: > > #/usr/bin/bash > > old=$(date -d 'now - 1 week' +%Y-%m-%d) > new=$(date +%Y-%m-%d) > > rsync -avP --delete --link-dest=../$dir /home/bakers >

Re: Using rsync as an incremental backup

2011-06-24 Thread Steven Levine
In <4e03c170.2020...@perturb.org>, on 06/23/11 at 03:42 PM, Scott Baker said: Hi, >If it were local that would be easy. This is remote (via SSH), so I'd >have to login before I run rsync to verify that directory is that. I was >hoping I could save that step since rsync is already doing all th

Re: Using rsync as an incremental backup

2011-06-24 Thread Larry Irwin
ould nuke "daily.7" and proceed with the rotation. I'm using a heavily modified version of the rsyncsnapshot scripts with automated email reporting from both client and server sides. On 6/24/2011 10:38 AM, Carlos Carvalho wrote: Scott Baker (sc...@perturb.org) wrote on 23 June 2011 1

Re: Using rsync as an incremental backup

2011-06-24 Thread Carlos Carvalho
Scott Baker (sc...@perturb.org) wrote on 23 June 2011 15:30: >I'm using rsync to do an incremental backup of my desktop here, to a >remote server as follows: > >#/usr/bin/bash > >old=$(date -d 'now - 1 week' +%Y-%m-%d) >new=$(date +%Y-%m-%d) > &

Re: Using rsync as an incremental backup

2011-06-23 Thread Scott Baker
On 06/23/2011 03:40 PM, Lancashire, Pete wrote: > pretty easy to put a wrapper around the script or add it .. If it were local that would be easy. This is remote (via SSH), so I'd have to login before I run rsync to verify that directory is that. I was hoping I could save that step since rsync is

Using rsync as an incremental backup

2011-06-23 Thread Scott Baker
I'm using rsync to do an incremental backup of my desktop here, to a remote server as follows: #/usr/bin/bash old=$(date -d 'now - 1 week' +%Y-%m-%d) new=$(date +%Y-%m-%d) rsync -avP --delete --link-dest=../$dir /home/bakers bak...@perturb.org:/home/bakers/backup/$new/ This is a

Re: Incremental backup with only delta into a separate file.

2011-02-09 Thread Henri Shustak
> Is there anyway in which i can have only the delta of the original file be > present at the backup location. > something like > 1. 1st backup is 100M > 2. write 20MB to the original file > 3. do a sync using hardlinks > 4. i have 20MB file at backup location with the delta changes only. Pr

Incremental backup with only delta into a separate file.

2011-02-07 Thread Manikanta Kattamuri
Hi All, I am presently doing a small POC with rsync for incremental backup and restore starategies. I have come up with certain question down the line, can anyone help me with the explanation. Used the config and ideas from: http://www.mikerubel.org/computers/rsync_snapshots/ The commands

Re: rsync incremental backup

2009-02-24 Thread henri
LBackup lables each snap shot tree with Section.#. This is similar to the way Lewis described for labeling the backups. If you want to keep the directory structure intact with -DD-MM you could have a post script which which generates symbolic links from the Section.# to the -DD-MM f

Re: rsync incremental backup

2009-02-23 Thread lewis butler
On 23-Feb-2009, at 01:27, Louis-David Mitterrand wrote: Presently I have the latest full backup in a 'current' directory and 30 day incrementals in '-MM-DD' format directories. Without changing that directory structure I'd like the '-DD-MM' directories to contain the full system hardlin

rsync incremental backup

2009-02-23 Thread Louis-David Mitterrand
Hi, Presently I have the latest full backup in a 'current' directory and 30 day incrementals in '-MM-DD' format directories. Without changing that directory structure I'd like the '-DD-MM' directories to contain the full system hardlinked (when applicable) to 'current'. What rsync command

Re: simple incremental backup woes. solutions?

2008-09-23 Thread Matt McCutchen
On Mon, 2008-09-22 at 11:46 +0200, The Peach wrote: > Just an info: will this patch be merged in the stable branch of rsync? Most likely not, as it's a quick hack. Matt -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options: https://lists.s

Re: simple incremental backup woes. solutions?

2008-09-22 Thread The Peach
On Fri, 05 Sep 2008 15:44:43 -0400 Matt wrote: > I hacked up a patch to do this for you with a --backup-whole-dirs > option; the patch is attached. sorry if I report in too late, but I finally got time to test the patch and - I never had a suspect about it - it works perfectly! thanks a lot aga

Re: simple incremental backup woes. solutions?

2008-09-05 Thread The Peach
On Fri, 05 Sep 2008 15:44:43 -0400 Matt wrote: > Yes. I hacked up a patch to do this for you with a --backup-whole-dirs > option; the patch is attached. The patched version of rsync is also > available in branch hacks/backup-whole-dirs of my repository. > > Matt thank you a lot. I'm looking fo

Re: simple incremental backup woes. solutions?

2008-09-05 Thread Matt McCutchen
On Fri, 2008-09-05 at 20:29 +0200, The Peach wrote: > Right now: > if the directory in the source is deleted, in the destination the files > contained in the directory are renamed, while the directory itself > is not. > > So... is it possible to have both renamed instead of only the files? Yes.

Re: simple incremental backup woes. solutions?

2008-09-05 Thread The Peach
On Fri, 05 Sep 2008 11:05:52 -0400 Matt wrote: > o you want it to > just add the suffix to deleted destination directories, or to both the > directories and the files inside, or what? Sorry for this misunderstanding. Right now: if the directory in the source is deleted, in the destination the f

Re: simple incremental backup woes. solutions?

2008-09-05 Thread Matt McCutchen
On Fri, 2008-09-05 at 13:15 +0200, The Peach wrote: > On Thu, 04 Sep 2008 22:48:28 + > Matt wrote: > > > It's not clear to me what the problem is, since the "cannot delete a > > non-empty dir" message is pretty harmless. Do you want the directories > > to be renamed? If so, should the indivi

Re: simple incremental backup woes. solutions?

2008-09-05 Thread The Peach
On Thu, 04 Sep 2008 22:48:28 + Matt wrote: > It's not clear to me what the problem is, since the "cannot delete a > non-empty dir" message is pretty harmless. Do you want the directories > to be renamed? If so, should the individual files inside be renamed > too? The situation with my rsy

Re: simple incremental backup woes. solutions?

2008-09-04 Thread Matt McCutchen
On Wed, 2008-09-03 at 17:59 +0200, The Peach wrote: > I've finally hit rsync limit. As someone already addressed the > problem in this list the problem regards the impossibility for rsync > to rename directories. > The situation is as follow: > every night I backup my samba dir with this command:

simple incremental backup woes. solutions?

2008-09-03 Thread The Peach
Hi all, I've finally hit rsync limit. As someone already addressed the problem in this list the problem regards the impossibility for rsync to rename directories. The situation is as follow: every night I backup my samba dir with this command: rsync -ab --suffix=-`date +%F-%H%M` --filter="protec

Re: incremental backup

2008-02-07 Thread Totok Sulistiomono
You can start with the one who initially popularize it, or maybe it's just enough after reading it: http://www.mikerubel.org/computers/rsync_snapshots/ Best regards piyush joshi wrote: Can anyone tell me that how can i take incremental backup through rsync. I will be grateful t

Re: incremental backup

2008-02-07 Thread Matt McCutchen
On Fri, 2008-02-08 at 07:40 +0530, piyush joshi wrote: > Can anyone tell me that how can i take incremental backup through > rsync. I will be grateful to you . Google for "rsync incremental backup" and you'll find a bunch of guides/how-tos. Or you can use a tool

incremental backup

2008-02-07 Thread piyush joshi
Can anyone tell me that how can i take incremental backup through rsync. I will be grateful to you . -- Regards Piyush Joshi 9415414376 -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Incremental backup and empty dirs

2007-05-01 Thread Matt McCutchen
On 4/30/07, Mark <[EMAIL PROTECTED]> wrote: Hi, I use rsync with such options: OPTIONS="-a -u -z -v -S --delete-during --ignore-errors \ -b --backup-dir=${PATH_BACKUP}/${DATE_YESTERDAY} \ --exclude-from=$IGNORE" rsync $OPTIONS ${PATH_SRC} \ ${PATH_BACKUP}/current Every

Re: Incremental backup and empty dirs

2007-05-01 Thread Wayne Davison
On Mon, Apr 30, 2007 at 07:17:52PM +0400, Mark wrote: > But if an empty dir is deleted from ${PATH_SRC}, then it is > accordingly deleted from ${PATH_BACKUP}/current, and don`t appear in > ${PATH_BACKUP}/${DATE_YESTERDAY}. That's correct. Dirs are not currently considered to be content that need

Re: Incremental backup and empty dirs

2007-05-01 Thread rsync
On Mon, Apr 30, 2007 at 07:17:52PM +0400, Mark wrote: > Hi, > > I use rsync with such options: > > OPTIONS="-a -u -z -v -S --delete-during --ignore-errors \ > -b --backup-dir=${PATH_BACKUP}/${DATE_YESTERDAY} \ > --exclude-from=$IGNORE" [skip] > > Do you know what to do it to m

Incremental backup and empty dirs

2007-04-30 Thread Mark
Hi, I use rsync with such options: OPTIONS="-a -u -z -v -S --delete-during --ignore-errors \ -b --backup-dir=${PATH_BACKUP}/${DATE_YESTERDAY} \ --exclude-from=$IGNORE" rsync $OPTIONS ${PATH_SRC} \ ${PATH_BACKUP}/current Everything works as it should be, deleted files are

Re: pseudo incremental backup solution

2006-10-20 Thread Nico Schottelius
Martin Schröder [Fri, Oct 20, 2006 at 01:21:02PM +0200]: > 2006/10/20, Nico Schottelius <[EMAIL PROTECTED]>: > >The configuration parameters have to be TAB seperated (using standard > >whitespaces breaks). > > Cosmetics. :-) Well, it's a bit problematic if you've all your editors switched to repl

Re: pseudo incremental backup solution

2006-10-20 Thread Martin Schröder
2006/10/20, Nico Schottelius <[EMAIL PROTECTED]>: The configuration parameters have to be TAB seperated (using standard whitespaces breaks). Cosmetics. :-) Rsnapshot does not support per source exclude lists (this is a real issue for bigger backup scenarios, as we use it here with > 30 machin

Re: pseudo incremental backup solution

2006-10-20 Thread Nico Schottelius
[Sorry for breaking the thread, I did not found the Message-ID of Martin's mail on the web and he did not cc me.] > 2006/10/20, Nico Schottelius : > > Just wanted to tell you that there's a simple and somehow smart > > backup solution using rsync named ccollect [0]. > > And the difference to rsn

Re: pseudo incremental backup solution

2006-10-20 Thread Martin Schröder
2006/10/20, Nico Schottelius <[EMAIL PROTECTED]>: Just wanted to tell you that there's a simple and somehow smart backup solution using rsync named ccollect [0]. And the difference to rsnapshot is? Best Martin -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsyn

pseudo incremental backup solution

2006-10-20 Thread Nico Schottelius
Hello dear list! Just wanted to tell you that there's a simple and somehow smart backup solution using rsync named ccollect [0]. It uses the hardlink feature of rsync to create fullbackups with only minor size differences (it uesd cp -al and pax before). I would be happy for any critic about the

Re: incremental backup help required

2006-01-02 Thread Ben Escoto
> answer that is already written. > > > > Reading this article by Mike Rubel > > http://www.mikerubel.org/computers/rsync_snapshots/ > > > > Should give you some detailed idea of how to use the --link-dest > > feature. > > Or let rsyncbackup do incremental b

Re: incremental backup help required

2006-01-02 Thread Andreas Åkre Solberg
Den Dec 7, 2005 kl. 16:01 skrev Atwood, Robert C: I can answer this one! But mostly by directing you to an even better answer that is already written. Reading this article by Mike Rubel http://www.mikerubel.org/computers/rsync_snapshots/ Should give you some detailed idea of how to use the --

RE: 7 day incremental backup

2005-12-22 Thread C. P.
ba.org Subject: 7 day incremental backup Date: Wed, 21 Dec 2005 08:49:00 -0800 (PST) MIME-Version: 1.0 Received: from lists.samba.org ([66.70.73.150]) by bay0-mc1-f14.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.211); Wed, 21 Dec 2005 08:52:55 -0800 Received: from dp.samba.org (localhost [127.0.0

Re: 7 day incremental backup

2005-12-21 Thread Martin Schröder
On 2005-12-21 08:49:00 -0800, ed hayes wrote: > I'm new using rsync, and I found the example for "7 day incremental backup". > I got this working, but I've got 1 question: Don't know about that; use rsnapshot instead. Best Martin --

7 day incremental backup

2005-12-21 Thread ed hayes
I'm new using rsync, and I found the example for "7 day incremental backup". I got this working, but I've got 1 question:   "Is there a way to rename the saved/backed up directory?"   Like backup ~/junk but rename the backup directory to ol

RE: incremental backup help required

2005-12-07 Thread Atwood, Robert C
'dirvish' that I am told does all this and more, using rsync as the underlying transfer mechanism http://www.dirvish.com/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gg gg234 Sent: 07 December 2005 11:03 To: rsync@lists.samba.org Subject: i

incremental backup help required

2005-12-07 Thread gg gg234
Hi, This is my rsync command /usr/bin/rsync  --compress \  --verbose \  --rsh=ssh \  --times \  --owner \    --group \   --ignore-times \    --links \  --p

Re: mirror combined with 7 day incremental backup

2005-09-19 Thread Wayne Davison
On Mon, Sep 19, 2005 at 10:49:30AM +0200, Paul Slootman wrote: > Hmm, I don't understand what you mean with "7 days worth of inodes". Sorry, my brain slipped a gear there. The inodes are the files, so (as you say) they are not duplicated. The only extra space needed is for the duplicated directo

Re: mirror combined with 7 day incremental backup

2005-09-19 Thread Paul Slootman
On Sat 17 Sep 2005, Wayne Davison wrote: > On Sat, Sep 17, 2005 at 01:27:16PM -0400, Darcy Bangsund wrote: > > I Want to utilize the --delete option for files that no longer exist on > > /mnt/production/ that have been on /mnt/backup/production/ for longer > > then 7 days. > > Your two choices

Re: mirror combined with 7 day incremental backup

2005-09-18 Thread Jason Haar
There's also rsnapshot. Defaults to hourly and 7-day rolling backups, using hard-links to save diskspace (i.e. if files haven't changed from one run to the next). Saves a tonne of diskspace :-) -- Cheers Jason Haar Information Security Manager, Trimble Navigation Ltd. Phone: +64 3 9635 377 Fax:

Re: mirror combined with 7 day incremental backup

2005-09-18 Thread Hari Krishna Dara
05 13:45:33 -0400 > Subject: Re: mirror combined with 7 day incremental backup > There are some notes at > http://www.mikerubel.org/computers/rsync_snapshots/#Rsyn and I remember > seeing other such approaches (but can't put my finger on them at the > moment). > > Lee C &g

Re: mirror combined with 7 day incremental backup

2005-09-17 Thread Wayne Davison
On Sat, Sep 17, 2005 at 01:27:16PM -0400, Darcy Bangsund wrote: > I Want to utilize the --delete option for files that no longer exist on > /mnt/production/ that have been on /mnt/backup/production/ for longer > then 7 days. Your two choices are (1) to use --link-dest into a new directory every

Re: mirror combined with 7 day incremental backup

2005-09-17 Thread Darcy Bangsund
wrote: Hello, I'm trying to figure out how to keep a mirror and 7 day incremental backup between to 2 mount points. I want to rsync everything from /mnt/production/ to /mnt/backup/production/ on the same server. Nothing fancy. But , I Want to utilize the --delete option for files that

Re: mirror combined with 7 day incremental backup

2005-09-17 Thread Lee Cullens
/computers/rsync_snapshots/#Rsyn and I remember seeing other such approaches (but can't put my finger on them at the moment). Lee C Darcy Bangsund wrote: Hello, I'm trying to figure out how to keep a mirror and 7 day incremental backup between to 2 mount points. I want to rsync every

Re: mirror combined with 7 day incremental backup

2005-09-17 Thread Lee Cullens
There are some notes at http://www.mikerubel.org/computers/rsync_snapshots/#Rsyn and I remember seeing other such approaches (but can't put my finger on them at the moment). Lee C Darcy Bangsund wrote: Hello, I'm trying to figure out how to keep a mirror and 7 day increment

mirror combined with 7 day incremental backup

2005-09-17 Thread Darcy Bangsund
Hello, I'm trying to figure out how to keep a mirror and 7 day incremental backup between to 2 mount points. I want to rsync everything from /mnt/production/ to /mnt/backup/production/ on the same server. Nothing fancy. But , I Want to utilize the --delete option for files that no l

Re: Problem with incremental backup - copies instead of hard links

2004-10-04 Thread Wayne Davison
On Mon, Oct 04, 2004 at 06:53:18AM +0200, Mischa wrote: > If both paths are on the local harddisk, it works properly, if the path > is on a firewire disk it doesn't. Try creating a hard-link manually between the actual destination dir and the backup dir that is failing. It might be that you are

Problem with incremental backup - copies instead of hard links

2004-10-03 Thread Mischa
Hi there, I'm using this version of rsync: localhost:~ mzehetle$ /usr/local/bin/rsync --version rsync version 2.6.0 protocol version 27 Copyright (C) 1996-2004 by Andrew Tridgell and others HFS+ filesystem support for OSX (C)2004 Kevin A. Boyd <http://rsync.samba.org/> Basically

rsync incremental backup probs

2004-07-06 Thread Christian Schlier
this email is to Sean M. Kaiser skaiser at northmont.k12.oh.us post was: Tue Feb 24 23:38:32 GMT 200 hi, did you get a solution for the --backup-dir problem (stat error messages)? I ran into the same thing... Thanks Christian the original message was: I am having a problem with implem

rsync incremental backup probs

2004-02-24 Thread Sean M. Kaiser
I am having a problem with implementing a slight modification of the "backup to a central backup server with 7 day incremental" example from . When rsync runs, I end up getting stat errors that the file doesn't exist in the backup-dir location. The backup ser

Re: [Linux-ME] daily backup (incremental backup ) - SOLVED

2003-12-04 Thread Bipinchandra Ranpura
Novell server to be > > taken on Linux m/c. I don't want full backup > every > > day but I need an incremental backup. I do not > want > > to delete any old directory or files. > > > > I have taken script from rsync examples, and made > > changes. .

Re: daily back (incremental backup )

2003-11-18 Thread Joe Batt
On Tue, 2003-11-18 at 13:21, Bipinchandra Ranpura wrote: > Hello,... > I have taken script from rsync examples, and made > changes. . But it doesn`t work can someone help me. ... Here is my script. It copies $1 to $2/date/ and deletes the mod(today, $3) version from $3. The clean up scheme leav

daily back (incremental backup )

2003-11-18 Thread Bipinchandra Ranpura
Hello, I have Novell Netware File server. Which is mounted as /mnt/novell on one of my Linux m/c. I want to take backup of Novell Server to my Linux m/c. I need everyday backup of Novell server to be taken on Linux m/c. I don't want full backup every day but I need an incremental back

Re: Incremental Backup

2003-08-14 Thread jw schultz
On Thu, Aug 14, 2003 at 04:18:41PM +0530, Joy Dominic wrote: > Hi folks, > > What is the purpose of following statements? > > > [ -d $HOME/emptydir ] || mkdir $HOME/emptydir > rsync --delete -a $HOME/emptydir/ $BSERVER::$USER/$BACKUPDIR/ To remove the contents from $BSERVER::$USER/$BACKUPDIR. M

Incremental Backup

2003-08-14 Thread Joy Dominic
Hi folks, What is the purpose of following statements? [ -d $HOME/emptydir ] || mkdir $HOME/emptydir rsync --delete -a $HOME/emptydir/ $BSERVER::$USER/$BACKUPDIR/ Expecting reply. Baskar -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, rea

incremental backup preserving extended attributes

2003-02-10 Thread Eric Chen
Hi, I have 2 linux machines, SOURCE and DEST on a network. I create some snapshots of the file structure on SOURCE and these snapshots have extended attributes. I want to copy the snapshots from SOURCE over to DEST over the network, but I don't want to lose the information on the extended attribut

incremental backup preserving extended attributes

2003-02-05 Thread Eric Chen
Hi, I have 2 linux machines, SOURCE and DEST on a network. I create some snapshots of the file structure on SOURCE and these snapshots have extended attributes. I want to copy the snapshots from SOURCE over to DEST over the network, but I don't want to lose the information on the extended attribut

Re: Rsync incremental backup solution implemented?

2001-06-28 Thread Ben Escoto
some sort. Signature information is stored locally. Each incremental backup sends over just an encrypted delta without reading what is on the target hard drive. This seems like it would be a good system to use if the remote HD isn't secure, since not much about the original data can

RE: Rsync incremental backup solution implemented?

2001-06-28 Thread Willis, Ian (Ento, Canberra)
O Box 1700 Canberra ACT 2601 ph 02 6246 4391 fax 02 6246 4000 -Original Message- From: Andrew Tridgell [mailto:[EMAIL PROTECTED]] Sent: Friday, 29 June 2001 10:59 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Rsync incremental backup solution implemented? > So ha

Re: Rsync incremental backup solution implemented?

2001-06-28 Thread Andrew Tridgell
> So has anyone implemented this yet, or begun work on it or something > similar? Thanks for any help. Please mail me directly as I am not > subscribed to this list. I don't know of anyone who has implemented this, although I don't think it would be a huge amount of work. It would be excellent

RE: Rsync incremental backup solution implemented?

2001-06-28 Thread Willis, Ian (Ento, Canberra)
Sent: Friday, 29 June 2001 7:37 AM To: [EMAIL PROTECTED] Subject: Rsync incremental backup solution implemented? Hi, I am curious about the incremental backup method suggested by Andrew Tridgell on page 92 of his thesis describing rsync. The basic idea is that signature information would be

Rsync incremental backup solution implemented?

2001-06-28 Thread Ben Escoto
Hi, I am curious about the incremental backup method suggested by Andrew Tridgell on page 92 of his thesis describing rsync. The basic idea is that signature information would be saved along with the data and incremental changes could be produced using this data. Some advantages for

Re: Incremental backup - New Story

2001-02-22 Thread Hans E. Kristiansen
IT WORKS! Sorry for the shouting, but all my problems is now solved. Just to describe the setup; The backup consists of two scripts, one Linux based shell script, and on PC based Botch file. The PC script only sets up a share ( this is the windows 2000 client version ), and uses ssh to start the

Re: Incremental backup - New Story

2001-02-22 Thread Dave Dykstra
On Thu, Feb 22, 2001 at 07:01:30PM +0800, Hans E. Kristiansen wrote: > using both the --backup and the --backup-dir option, I am now able to take > incremental backup of changed files. However, with a small problem. I have > noticed that if the user creates new files ( like new documen

Incremental backup - New Story

2001-02-22 Thread Hans E. Kristiansen
using both the --backup and the --backup-dir option, I am now able to take incremental backup of changed files. However, with a small problem. I have noticed that if the user creates new files ( like new documents ), the are added to the destination directory, and not to the backup directory