[Bacula-users] Append text to email

2007-09-03 Thread JC Júnior
Hi Friends!!! I would like to append text generated by "runbeforejob" and "runafterjob" to email that is sent to my email address with bacula data about backups. it is possible??? thanks for all !!! Jc Júnior - Thi

Re: [Bacula-users] [Bacula-devel] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Martin Simmons
> On Mon, 3 Sep 2007 21:29:24 +0200, Kern Sibbald said: > > On Monday 03 September 2007 20:28, Eric Bollengier wrote: > > On Monday 03 September 2007 19:12:12 Kern Sibbald wrote: > > > On Monday 03 September 2007 18:44, Eric Bollengier wrote: > > > > Hi, > > > > > > > > It's why we provide the

Re: [Bacula-users] [Bacula-devel] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Martin Simmons
> On Mon, 3 Sep 2007 13:45:48 +0200, Kern Sibbald said: > > Hello, > > You would think that wild cards (fnmatch) are well known and that they work > the same on all systems. Apparently not. > > On GNU clib systems, > > fnmatch("a*b/*", "abbb/.x", FNM_PATHNAME|FNM_PERIOD) returns fail >

Re: [Bacula-users] [Bacula-devel] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Eric Bollengier
> > glibc tests are better than before : > > [18] [/b matches [/b -> FAIL > > To the best of my knowledge the following are not wildcard matches. If > they are can you point me to the definition of [:alpha:]? > > > [36] *[[:alpha:]]/*[[:alnum:]] does not match a/b -> FAIL > > [37] *[![:digit:

Re: [Bacula-users] [Bacula-devel] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Kern Sibbald
On Monday 03 September 2007 20:28, Eric Bollengier wrote: > On Monday 03 September 2007 19:12:12 Kern Sibbald wrote: > > On Monday 03 September 2007 18:44, Eric Bollengier wrote: > > > Hi, > > > > > > It's why we provide the bwild tool... If you are using something > > > special, you can validate y

Re: [Bacula-users] [Bacula-devel] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Eric Bollengier
On Monday 03 September 2007 19:12:12 Kern Sibbald wrote: > On Monday 03 September 2007 18:44, Eric Bollengier wrote: > > Hi, > > > > It's why we provide the bwild tool... If you are using something > > special, you can validate your expression with this tool. > > I don't imagine that you were direc

Re: [Bacula-users] Performance issue (max 7.x/sec)

2007-09-03 Thread Michael Patzer
i found the solution.. i had TLS enabled. after disabling i've got 64MB/sec from bacula, also the high cpuload with bconsole connected is gone. is there any possibility to improve tls performance, or is it maybe a bug? regards, michael ---

Re: [Bacula-users] Performance issue (max 7.x/sec)

2007-09-03 Thread Michael Patzer
some update: i've used 2.0.3 and updated to 2.2.1 now, but now the bacula-dir makes 99.9% cpu while connected with bclient. i ran the director with debug and strace, but i couldn't find anything that makes this high cpuload. same with 2.2.0. i also testet to transfer a 1 gig file from the bacula-

[Bacula-users] 64-bit Bacula with 64-bit PostgreSQL on Intel Xserve / Mac OS X Server?

2007-09-03 Thread Hydro Meteor
Hi, I noticed in the wonderfully documented Bacula User's Guide, that Bacula can be made to work in a 64-bit context: If you have over 4 billion file entries stored in your database, the database FileId is likely to overflow. This is a monster database, but still possible. Bacula's FileId fields

[Bacula-users] Simple high level question

2007-09-03 Thread Hydro Meteor
Hi, I am about to install Bacula for the first time on an Apple Intel Xserve running Mac OS X Server 10.4.10. Something I had in mind was using a dedicated disc volume to run Bacula director and the other critical components such as File Server, Database Server and Storage Server. This dedicated

[Bacula-users] Verify OK ?

2007-09-03 Thread Thomas
since upgrading to 2.2.0 i always get the status OK: > 03-Sep 15:55 backup-dir: Verifying against JobId=1730 > Job=vclient.2007-08-10_09.32.14 > 03-Sep 15:55 backup-dir: Start Verify JobId=2056 Level=Catalog > Job=vclient.2007-09-03_15.55.01 > 03-Sep 15:55 backup-dir: File: /etc/sendmail/t.maile

Re: [Bacula-users] [Bacula-devel] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Kern Sibbald
On Monday 03 September 2007 18:44, Eric Bollengier wrote: > Hi, > > It's why we provide the bwild tool... If you are using something > special, you can validate your expression with this tool. I don't imagine that you were directing that comment at me -- since I was the person who wrote bwild :-

Re: [Bacula-users] [Bacula-devel] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Kern Sibbald
On Monday 03 September 2007 18:44, Eric Bollengier wrote: > Hi, > > It's why we provide the bwild tool... If you are using something > special, you can validate your expression with this tool. > > I have run the testfnm regress tool from the glibc with the old bacula > version, and more than one te

Re: [Bacula-users] [Bacula-devel] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Eric Bollengier
Hi, It's why we provide the bwild tool... If you are using something special, you can validate your expression with this tool. I have run the testfnm regress tool from the glibc with the old bacula version, and more than one tests are failing... [ 3] a[/]b matches a/b -> FAIL [ 5] * matches

Re: [Bacula-users] Multiplexing multiple jobs to tape

2007-09-03 Thread Justin Piszcz
On Mon, 3 Sep 2007, Chris Howells wrote: > Hi John, > > John Drescher wrote: >>> I believe the 120MB/s is the raw speed, 240MB/s is the compressed speed. >>> >> I tried to check on that but I did not find the direct answer. But I >> did find an article by IBM that stated that LTO4 did 120MB/s wh

Re: [Bacula-users] [Bacula-devel] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Attila Fülöp
Kern Sibbald wrote: > Hello, > > You would think that wild cards (fnmatch) are well known and that they work > the same on all systems. Apparently not. > > On GNU clib systems, > > fnmatch("a*b/*", "abbb/.x", FNM_PATHNAME|FNM_PERIOD) returns fail > (i.e. FN_NOMATCH). > > and on my vers

Re: [Bacula-users] Multiplexing multiple jobs to tape

2007-09-03 Thread Chris Howells
Justin Piszcz wrote: > Bacula now supports multiplexing? Yes, that's what this thread was about - I suggest you read the entire thing :) - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to fi

Re: [Bacula-users] Skip computer when no connexion

2007-09-03 Thread Aitor
En/na Bill Moran ha escrit: > Aitor <[EMAIL PROTECTED]> wrote: > >> I've configured bacula in order to back up the data of 6 clients. >> Everything is going fine except when one of the computers isn't >> connected. Then, Bacula tries to connect and if it isn't then it remains >> waiting. I wo

Re: [Bacula-users] Skip computer when no connexion

2007-09-03 Thread Bill Moran
Aitor <[EMAIL PROTECTED]> wrote: > > I've configured bacula in order to back up the data of 6 clients. > Everything is going fine except when one of the computers isn't > connected. Then, Bacula tries to connect and if it isn't then it remains > waiting. I would like that in the third attempt it

[Bacula-users] Fnmatch difference between GNU and BSD versions

2007-09-03 Thread Kern Sibbald
Hello, You would think that wild cards (fnmatch) are well known and that they work the same on all systems. Apparently not. On GNU clib systems, fnmatch("a*b/*", "abbb/.x", FNM_PATHNAME|FNM_PERIOD) returns fail (i.e. FN_NOMATCH). and on my version of the BSD fnmatch.c it returns succes

Re: [Bacula-users] Bacula e doc in italiano

2007-09-03 Thread Lucio
Alle 10:30, lunedì 3 settembre 2007, Massimiliano Neri ha scritto: > Ha tutti gli utenti - esiste una documentazione tradotta in italiano di > Bacula (comprese FAQ e HAWTO)? A parte le ovvie battute che verrebbe spontaneo fare, direi che su questa lista si parla inglese, visto che partecipa gente

[Bacula-users] directories restore without an option 5 of restore command

2007-09-03 Thread David Pospisil
Hi, if I choose an option 5 from restore command (5: Select the most recent backup for a clien), it takes aprox. 6 hours to build the tree. I would like to restore RECURSIVELY for example directory /home/david. Is there some way how to do it without an option 5 of restore command or is there som

Re: [Bacula-users] Multiplexing multiple jobs to tape

2007-09-03 Thread Chris Howells
Hi John, John Drescher wrote: >> I believe the 120MB/s is the raw speed, 240MB/s is the compressed speed. >> > I tried to check on that but I did not find the direct answer. But I > did find an article by IBM that stated that LTO4 did 120MB/s while > LTO3 did 80MB/s. So I went to my tape vendor's

Re: [Bacula-users] Skip computer when no connexion

2007-09-03 Thread Arno Lehmann
Hi, 03.09.2007 11:06,, Aitor wrote:: > I've configured bacula in order to back up the data of 6 clients. > Everything is going fine except when one of the computers isn't > connected. Then, Bacula tries to connect and if it isn't then it remains > waiting. I would like that in the third attempt

[Bacula-users] Performance issue (max 7.x/sec)

2007-09-03 Thread Michael Patzer
hi, it seems that there is a performance issue in my bacula-setup, but it seems that its not only a bacula-issue. i've the same max-speed with scp. any idea what the cause could be, or how i could improve the speed? - i've GZIP disabled, only MD5 enabled. its b

[Bacula-users] Bacula e doc in italiano

2007-09-03 Thread Massimiliano Neri
Ha tutti gli utenti - esiste una documentazione tradotta in italiano di Bacula (comprese FAQ e HAWTO)? Grazie. Massimiliano Neri - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find

[Bacula-users] Skip computer when no connexion

2007-09-03 Thread Aitor
I've configured bacula in order to back up the data of 6 clients. Everything is going fine except when one of the computers isn't connected. Then, Bacula tries to connect and if it isn't then it remains waiting. I would like that in the third attempt it skips this computer. Any idea to implemen

Re: [Bacula-users] Problem with install bacula

2007-09-03 Thread Manuel Ostendorf
Hello, I cannot install bacule. If I tried after using "./configure --with-mysql" > with "make", I got errors. > > > == Error in /home/Ponte/bacula == > > > /bin/sh: line 1: cd: scripts: Datei oder Verzeichnis nicht gefunden > ==>Entering directory /home/Ponte/bacula > make[253]: Enter

Re: [Bacula-users] Can Windows version compare to Retrospect

2007-09-03 Thread Chris Hoogendyk
[EMAIL PROTECTED] wrote: > Not a troll. Just looking for a basic idea of comparables. > My background is mostly Unix/Linux. However I've taken up video > editing and other detailed graphics work. > > Is the MS windows side of bacula still being developed and can it be > compared to something