>>>>> On Mon, 4 Jul 2005 12:29:57 +1000, "Jesus Salvo Jr." <[EMAIL PROTECTED]> 
>>>>> said:

  JS> On Monday 04 July 2005 11:58, Jesus Salvo Jr. wrote:
  >> > Now to test it out, I ran:
  >> >
  >> > * estimate job=syddb280r-sybdump listing
  >> > Connecting to Client syddb280r-fd at 10.0.21.65:9102
  >> > 2000 OK estimate files=753 bytes=82,962,185,218
  >> >
  >> > Note that it says 753 files, but if I run:
  >> >
  >> >  find /u03/sybbackup/syddbshared -mtime -1
  >> >
  >> > ... from a shell on the backup client, it only shows me 212 files.
  >> >

  JS> Also ... the directory including any of its subdirectories does not 
contain 
  JS> any more than 287 files.

I think the problem is that find prints all the directories too, so Bacula is
doing a recursive scan of those, as well as backing up the files that find
prints.

What happens if you use:

find /u03/sybbackup/syddbshared -type f -mtime -1

or

find /u03/sybbackup/syddbshared -not -type d -mtime -1

__Martin


-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to