Re: [Bacula-users] Debian Packages: Bacula Beta 2.5.42-b2
On Tue, 24 Mar 2009 12:51:08 +0900, Craig Ringer wrote: > Chris Cameron wrote: >> The error is now gone, but it still doesn't want to upgrade >> >> >> r...@daffy:/var/www# aptitude update > > The repository at: > > http://chaschperli.ch/debian/intrepid-bacula > > is empty, which is why it's not doing anything. It looks like the > package files didn't make it into the repository dir. ... now the hardy/intrepid repo is populated with packages... seems i had my brain lost somewhere as i created the repo for hardy/intrepid... sorry. "apt-cache policy " will tell you from which repo it's gonna pull the package. - Thomas -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Accurate restoration of renamed/deleted file
Craig Ringer wrote: > Frank Sweetser wrote: >> Craig Ringer wrote: >>> Frank Sweetser wrote: >>> [deleted file tracking] has been implemented in the current development code base. >>> Oh, I also meant to ask: >>> >>> Does deleted file tracking require the cooperation of the fd? Or will >>> I be able to keep on using 2.4 fds on my clients? It'd be helpful not >>> to have to run 2.4 and 2.5 fds in parallel on the clients. >> I haven't played with it, but I believe that it requires 2.5 FDs. > > Yes, looking at the sources, it does look like a 2.5 FD would be required. > > However, I'm not having any luck getting it working even with a 2.5 > (today's SVN) director and FD. Aah, never mind. Had to add the "Accurate" directive to the job definition, it's right there in TFM. With: Accurate = yes it all works as expected (despite the TODO/FIXME notes in the code). I must've missed something in the fd code :S Now, to see how it performs with my Maildir-like Cyrus IMAPd spool (67Gb, ~ 500,000 files, daily incrementals over weekly differentials and monthly full backups). -- Craig Ringer -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Accurate restoration of renamed/deleted file
Frank Sweetser wrote: > Craig Ringer wrote: >> Frank Sweetser wrote: >> >>> [deleted file tracking] has been implemented in the current >>> development code base. >> >> Oh, I also meant to ask: >> >> Does deleted file tracking require the cooperation of the fd? Or will >> I be able to keep on using 2.4 fds on my clients? It'd be helpful not >> to have to run 2.4 and 2.5 fds in parallel on the clients. > > I haven't played with it, but I believe that it requires 2.5 FDs. Yes, looking at the sources, it does look like a 2.5 FD would be required. However, I'm not having any luck getting it working even with a 2.5 (today's SVN) director and FD. I create: /deltest /deltest/always /deltest/del_before_incr then run a full backup. I then remove: /deltest/del_before_incr and create: /deltest/created_after_incr and run an incremental. When `restore' is invoked in the console (selected "most recent for client", then the client used, then the "DeletionTest" job I created), the mark list shows all three files. When I "mark *" in the root and approve the restore to a temporary location that didn't previously exist, all three files are created. Taking a (quick) look at the source, it looks like Bacula should be recording deleted file records, but the file daemon isn't doing anything with them yet: src/filed/restore.c:301 /* TODO: manage deleted files */ if (rctx.type == FT_DELETED) { /* deleted file */ continue; } ... and I didn't see any sign of the FT_DELETED filetype attribute seeing use in the director. bextract should list any deleted files: src/stored/bextract.c: if (attr->type == FT_DELETED) { Jmsg(jcr, M_INFO, 0, _("%s was deleted.\n"), attr->fname); extract = false; return true; } ... so given that no such "was deleted" messages appear when I run bextract on a volume that should contain deleted file records, I guess they're not being recorded in the first place. The filed does call accurate_send_deleted_list(...) from backup.c:140 . I'm not quite sure what's going wrong yet... I'll try to trace things. In the mean time, if anyone knows something that's required to enable deleted file tracking or the degree of completeness of the feature, I'd love to hear about it. Job definition: Job { Name = "BackupDT" JobDefs = "DefaultJob" Schedule = "SystemCycle"# very similar to the default Client = backup-fd Storage = "File" FileSet = "DeletionTest" } FileSet { Name = "DeletionTest" Include { File = "/deltest" } } JobDefs defaults to incremental. It doesn't do anything of much interest. -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Debian Packages: Bacula Beta 2.5.42-b2
Chris Cameron wrote: > The error is now gone, but it still doesn't want to upgrade > > > r...@daffy:/var/www# aptitude update The repository at: http://chaschperli.ch/debian/intrepid-bacula is empty, which is why it's not doing anything. It looks like the package files didn't make it into the repository dir. -- Craig Ringer -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Accurate restoration of renamed/deleted file
Craig Ringer wrote: > Frank Sweetser wrote: > >> [deleted file tracking] has been implemented in the current >> development code base. > > Oh, I also meant to ask: > > Does deleted file tracking require the cooperation of the fd? Or will I > be able to keep on using 2.4 fds on my clients? It'd be helpful not to > have to run 2.4 and 2.5 fds in parallel on the clients. I haven't played with it, but I believe that it requires 2.5 FDs. -- Frank Sweetser fs at wpi.edu | For every problem, there is a solution that WPI Senior Network Engineer | is simple, elegant, and wrong. - HL Mencken GPG fingerprint = 6174 1257 129E 0D21 D8D4 E8A3 8E39 29E3 E2E8 8CEC -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Accurate restoration of renamed/deleted file
Craig Ringer wrote: > Frank Sweetser wrote: >> Craig Ringer wrote: >>> I note that deleted/renamed file tracking is no longer shown on the >>> sf.net bacula projects document: >>> >>> http://bacula.svn.sourceforge.net/viewvc/bacula/trunk/bacula/projects?view=markup >>> >>> >>> >>> Is it complete? I haven't seen anything about it on the site, ML, or in >>> the ChangeLog in current SVN. The FAQ still says deleted files aren't >>> tracked. >> >> It has been implemented in the current development code base. > > Thanks for pointing that out, as I wouldn't have known based on > published info. > > I've pulled svn, butchered Ubuntu's source package for 2.4 to build 2.5 > instead, and am testing it now. > > Is bacula SVN stable enough to be worth considering for production > backups? ie - is there a test suite run regularly, etc? I'm in *serious* > need of deleted file tracking, but nervous about using a prerelease. It's pretty close, but it also hasn't been officially blessed yet, either. > I'm planning on running backups of the deleted-file-handling-critical > stuff in parallel with 2.5svn on a smaller scale for a while before I > even consider moving anything important over to it exclusively. I'm > curious to know what you think of using 2.5, with suitable testing, though. Luckily, there's a testing framework that you can easily grab and run your own suite of regression tests! You can find instructions on how to set up the test suite here: http://bacula.org/en/developers/Bacula_Regression_Testing.html and you can see the latest test results here: http://regress.bacula.org/ -- Frank Sweetser fs at wpi.edu | For every problem, there is a solution that WPI Senior Network Engineer | is simple, elegant, and wrong. - HL Mencken GPG fingerprint = 6174 1257 129E 0D21 D8D4 E8A3 8E39 29E3 E2E8 8CEC -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Accurate restoration of renamed/deleted file
Frank Sweetser wrote: > Craig Ringer wrote: >> I note that deleted/renamed file tracking is no longer shown on the >> sf.net bacula projects document: >> >> http://bacula.svn.sourceforge.net/viewvc/bacula/trunk/bacula/projects?view=markup >> >> >> >> Is it complete? I haven't seen anything about it on the site, ML, or in >> the ChangeLog in current SVN. The FAQ still says deleted files aren't >> tracked. > > It has been implemented in the current development code base. Thanks for pointing that out, as I wouldn't have known based on published info. I've pulled svn, butchered Ubuntu's source package for 2.4 to build 2.5 instead, and am testing it now. Is bacula SVN stable enough to be worth considering for production backups? ie - is there a test suite run regularly, etc? I'm in *serious* need of deleted file tracking, but nervous about using a prerelease. I'm planning on running backups of the deleted-file-handling-critical stuff in parallel with 2.5svn on a smaller scale for a while before I even consider moving anything important over to it exclusively. I'm curious to know what you think of using 2.5, with suitable testing, though. -- Craig Ringer -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Accurate restoration of renamed/deleted file
Frank Sweetser wrote: > [deleted file tracking] has been implemented in the current development code > base. Oh, I also meant to ask: Does deleted file tracking require the cooperation of the fd? Or will I be able to keep on using 2.4 fds on my clients? It'd be helpful not to have to run 2.4 and 2.5 fds in parallel on the clients. -- Craig Ringer -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] [Bacula-devel] Bat help files
* Kevin Keane schrieb am 23.03.09 um 20:36 Uhr: > > > >> I think I misunderstood you sorry. I read "bacula help files" not > >> bat help files ;) > >> > >> It seems like bat only looks for an index.html in the current > >> working directory which is not good ;) > >> > >> I would say /usr/share/doc/bat/ > >> > >> > > > It's really up to the packager whether or not /usr/share/doc/bat exists. > It is a good idea, of course, in case somebody ever comes up with an > actual package named bat. I was assuming that. > > That said, I think the /usr/share/doc location is really not so much for > help files that are called at runtime, as for general documentation > files such as readme. Hm. I think you are right. > I'm thinking that the installation directory would > probably be the best place. Either that, or create a directory > /usr/share/bacula (not under the doc directory). Maybe even > /usr/lib/bacula although I think that's a stretch. > > Obviously, all that should be configurable at compile time so that > different distributions can put it wherever they feel appropriate. I would vote for /usr/share/ then, so as you say this should be configurable at compile time -Marc -- 8AAC 5F46 83B4 DB70 8317 3723 296C 6CCA 35A6 4134 -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Debian Lenny Bacula screw up.
John Drescher wrote: >> I have just "upgraded"(?) my bacula server to debian version lenny and >> there appears to be a major screwup in their package for this version. >> >> First part was it objected to "AcceptAnyVolume=Yes in each pool directive. >> > I believe that directive went away years ago because the default is to > accept any volume. When do some later research, that was what I found was the case. >> Second is I can no longer modify a requested job to place its out put in >> a selected tape pool. >> > Although I do not use that often I think you can still do that in bconsole. That was where I was doing it and found that it was simply ignoring the pool that it was directed to use. Problem was skirted by changing the level from full to incremental, when it followed the job/jobdef listing for tape pools to use. Now to chase up why the upgraded director has taken to dieing all the time. -- Terry Collins {:-)} Bicycles, Appropriate Technology, Natural Environment, Welding -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Debian Packages: Bacula Beta 2.5.42-b2
The error is now gone, but it still doesn't want to upgrade r...@daffy:/var/www# aptitude update Hit http://chaschperli.ch intrepid-bacula/ Release.gpg Ign http://chaschperli.ch intrepid-bacula/ Translation-en_US Hit http://chaschperli.ch intrepid-bacula/ Release Hit http://chaschperli.ch intrepid-bacula/ Packages Hit http://chaschperli.ch intrepid-bacula/ Sources Reading package lists... Done r...@daffy:/var/www# apt-get upgrade Reading package lists... Done Building dependency tree Reading state information... Done 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. r...@daffy:/var/www# aptitude safe-upgrade Reading package lists... Done Building dependency tree Reading state information... Done Reading extended state information Initializing package states... Done No packages will be installed, upgraded, or removed. 0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 0B of archives. After unpacking 0B will be used. Reading package lists... Done Building dependency tree Reading state information... Done Reading extended state information Initializing package states... Done ~Chris Cameron Sent from: Houston TX United States. On Mon, Mar 23, 2009 at 3:31 PM, Thomas Mueller wrote: > On Mon, 23 Mar 2009 14:21:32 -0500, Chris Cameron wrote: > > > Now I get > > > > W: Conflicting distribution: http://chaschperli.ch intrepid-bacula/ > > Release (expected intrepid-bacula but got intrepid-pacemaker) W: You may > > want to run apt-get update to correct these problems > > sorry, copy&paste error. updated the release file. "aptitude update" and > this error should be gone. > > - Thomas > > > > -- > Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are > powering Web 2.0 with engaging, cross-platform capabilities. Quickly and > easily build your RIAs with Flex Builder, the Eclipse(TM)based development > software that enables intelligent coding and step-through debugging. > Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com > ___ > Bacula-users mailing list > Bacula-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/bacula-users > -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Debian Packages: Bacula Beta 2.5.42-b2
On Mon, 23 Mar 2009 14:21:32 -0500, Chris Cameron wrote: > Now I get > > W: Conflicting distribution: http://chaschperli.ch intrepid-bacula/ > Release (expected intrepid-bacula but got intrepid-pacemaker) W: You may > want to run apt-get update to correct these problems sorry, copy&paste error. updated the release file. "aptitude update" and this error should be gone. - Thomas -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Question about Priorities and Maximum Concurrent Jobs
On Sat, Mar 21, 2009 at 05:10:09AM -0700, Kevin Keane wrote: > John Lockard wrote: > > The minimum setting I have on Max Concurrent Jobs is on the > > Tape Library and that's set to 3. It appears that priority > > trumps all, unless the priority is the same or better. > > > > So, if I have one job that has priority of, say, 10, then > > any job running on any other tape drive or virtual library > > will sit and wait till that higher priority job to finish > > before they'll begin. > > > > This also makes priority mostly useless for me as well. I > > guess it would take care of situations where I'd want one > > job to finish before a secondary or tertiary job starts, but > > then I run the risk of another job postponing the 2nd and > > 3rd job, which wouldn't be my intention > I notice in the bacula sample configuration that priority is used to > make sure the catalog backup always runs last. In that case, the > behavior you describe (any other job postpones the lower-priority one, > regardless of storage or pool) is exactly the desired behavior. But, priority also postpones any jobs of higher priority. If a job, of priority 20 is currently running and you start off several other jobs, with priorities of 10, 20 and 30, then the only jobs which will run concurrently will be the jobs of priority 20. Once all the priority 20 jobs are complete, only then will jobs of other priorities be examined and run. In my example, after all of the P-20 jobs run, the P-10 jobs will run, followed by the P-30 jobs. It seems to me that priority is running as described in the manual, but it runs counter to how you would logically expect. If I'm running a P-20 job, and storage devices are available, I would expect that jobs of P-<20 would also be able to run, rather than having to wait till *all* of the queued P-20 jobs are finished. -John -- Brain: Pinky, Are you pondering what I'm pondering? Pinky: I think so Brain, but if we get Sam spayed, we won't be able to have puppies, will we? --- John M. Lockard | U of Michigan - School of Information Unix and Security Admin | 1214 SI North - 1075 Beal Ave. jlock...@umich.edu |Ann Arbor, MI 48109-2112 www.umich.edu/~jlockard | 734-615-8776 | 734-647-8045 FAX --- -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] [Bacula-devel] Bat help files
John Drescher wrote: > On Mon, Mar 23, 2009 at 12:54 PM, Marc Schiffbauer > wrote: > >> I think I misunderstood you sorry. I read "bacula help files" not >> bat help files ;) >> >> It seems like bat only looks for an index.html in the current >> working directory which is not good ;) >> >> I would say /usr/share/doc/bat/ >> >> > > In gentoo it's > > /usr/share/doc/ > > So > > /usr/share/doc/bacula-2.4.4 > > would exist but not /usr/share/doc/bat > > John > It's really up to the packager whether or not /usr/share/doc/bat exists. It is a good idea, of course, in case somebody ever comes up with an actual package named bat. That said, I think the /usr/share/doc location is really not so much for help files that are called at runtime, as for general documentation files such as readme. I'm thinking that the installation directory would probably be the best place. Either that, or create a directory /usr/share/bacula (not under the doc directory). Maybe even /usr/lib/bacula although I think that's a stretch. Obviously, all that should be configurable at compile time so that different distributions can put it wherever they feel appropriate. -- Kevin Keane Owner The NetTech Find the Uncommon: Expert Solutions for a Network You Never Have to Think About Office: 866-642-7116 http://www.4nettech.com This e-mail and attachments, if any, may contain confidential and/or proprietary information. Please be advised that the unauthorized use or disclosure of the information is strictly prohibited. The information herein is intended only for use by the intended recipient(s) named above. If you have received this transmission in error, please notify the sender immediately and permanently delete the e-mail and any copies, printouts or attachments thereof. -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Debian Packages: Bacula Beta 2.5.42-b2
Now I get W: Conflicting distribution: http://chaschperli.ch intrepid-bacula/ Release (expected intrepid-bacula but got intrepid-pacemaker) W: You may want to run apt-get update to correct these problems ~Chris Cameron Sent from: Houston TX United States. On Mon, Mar 23, 2009 at 11:08 AM, Thomas Mueller wrote: > On Mon, 23 Mar 2009 09:47:34 -0500, Chris Cameron wrote: > > > I added > > > > deb http://chaschperli.ch/debian intrepid-bacula/ deb-src > > http://chaschperli.ch/debian intrepid-bacula/ > > > > to my /etc/apt/sources.list and get the following warning: > > > > W: GPG error: http://chaschperli.ch intrepid-bacula/ Release: The > > following signatures couldn't be verified because the public key is not > > available: NO_PUBKEY 2D787F5AA54185E4 > > W: You may want to run apt-get update to correct these problems > > > > Is that a problem? > > this is a security warning, because the gnupg key is not present. as root: > > wget -O - -q http://chaschperli.ch/debian/pubkey.asc | apt-key add - > > then "aptitude update" and the warning goes away. > > - Thomas > > > > -- > Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are > powering Web 2.0 with engaging, cross-platform capabilities. Quickly and > easily build your RIAs with Flex Builder, the Eclipse(TM)based development > software that enables intelligent coding and step-through debugging. > Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com > ___ > Bacula-users mailing list > Bacula-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/bacula-users > -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] [Bacula-devel] Bat help files
On Monday 23 March 2009 17:54:21 Marc Schiffbauer wrote: > I think I misunderstood you sorry. I read "bacula help files" not > bat help files ;) > > It seems like bat only looks for an index.html in the current > working directory which is not good ;) Yes, exactly. I didn't go into all the details, but clearly bat needs to look in the installation directory (then *possibly* the current directory). However, I am not sure that the help files are actually copied out of the build directory. In any case, that is what I am aiming at fixing. > > I would say /usr/share/doc/bat/ Yes, that sounds reasonable. Thanks. > > -Marc > > * Kern Sibbald schrieb am 23.03.09 um 16:42 Uhr: > > Hello, > > > > It appears that the bat help files are not getting properly installed -- > > at least in version 2.5 (I never really thought about it in 2.4.x). Can > > anyone tell me what is the default location that applications such as > > Bacula are supposed to install their help files? > > > > Regards, > > > > Kern > > > > - > >- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) > > are powering Web 2.0 with engaging, cross-platform capabilities. Quickly > > and easily build your RIAs with Flex Builder, the Eclipse(TM)based > > development software that enables intelligent coding and step-through > > debugging. Download the free 60 day trial. > > http://p.sf.net/sfu/www-adobe-com > > ___ > > Bacula-devel mailing list > > bacula-de...@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/bacula-devel -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] [Bacula-devel] Bat help files
On Mon, Mar 23, 2009 at 12:54 PM, Marc Schiffbauer wrote: > > I think I misunderstood you sorry. I read "bacula help files" not > bat help files ;) > > It seems like bat only looks for an index.html in the current > working directory which is not good ;) > > I would say /usr/share/doc/bat/ > In gentoo it's /usr/share/doc/ So /usr/share/doc/bacula-2.4.4 would exist but not /usr/share/doc/bat John -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] [Bacula-devel] Bat help files
* Kern Sibbald schrieb am 23.03.09 um 16:42 Uhr: > Hello, > > It appears that the bat help files are not getting properly installed -- at > least in version 2.5 (I never really thought about it in 2.4.x). Can anyone > tell me what is the default location that applications such as Bacula are > supposed to install their help files? Are you talking about man-pages under linux? If yes it is /usr/share/man/man/. Sections (copied from wikipedia ;)): -- Section Description 1 General commands 2 System calls 3 C library functions 4 Special files (usually devices, those found in /dev) and drivers 5 File formats and conventions 6 Games and screensavers 7 Miscellanea 8 System administration commands and daemons -- Other help files would go to /usr/share/doc/ in debian based distros and to /usr/share/doc/packages// in Red Hat or SuSE for example. -Marc -- 8AAC 5F46 83B4 DB70 8317 3723 296C 6CCA 35A6 4134 -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
[Bacula-users] XP backups stopping after 3.459 G
Good morning, I'm running bacula 2.2.8 on a PPC Ubuntu Hardy Heron box, backing up a Windows XP Pro box running the 2.4.4 client, backing up to files on the bacula director host. Whenever I kick off a backup, they start, and data is backed up, but every time at 3.459G of data (of the 47G total) the backups end "gracefully," which is to say there are no errors, and the system claims to have finished the backups. I've checked, and the backups are, at least to the point where they stop, incremental, in that there are different files within the fileset being backed up each time. The file storage itself doesn't appear to be limited; my current incremental file storage is at 10.38G, and is comprised of three backups from today. Any idea why there's a magic number of 3.459, and why bacula stops the backup as if it's done at that magic number? Any help would be appreciated! Thanks, Steve -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] [Bacula-devel] Bat help files
I think I misunderstood you sorry. I read "bacula help files" not bat help files ;) It seems like bat only looks for an index.html in the current working directory which is not good ;) I would say /usr/share/doc/bat/ -Marc * Kern Sibbald schrieb am 23.03.09 um 16:42 Uhr: > Hello, > > It appears that the bat help files are not getting properly installed -- at > least in version 2.5 (I never really thought about it in 2.4.x). Can anyone > tell me what is the default location that applications such as Bacula are > supposed to install their help files? > > Regards, > > Kern > > -- > Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are > powering Web 2.0 with engaging, cross-platform capabilities. Quickly and > easily build your RIAs with Flex Builder, the Eclipse(TM)based development > software that enables intelligent coding and step-through debugging. > Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com > ___ > Bacula-devel mailing list > bacula-de...@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/bacula-devel -- 8AAC 5F46 83B4 DB70 8317 3723 296C 6CCA 35A6 4134 -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Debian Packages: Bacula Beta 2.5.42-b2
On Mon, 23 Mar 2009 09:47:34 -0500, Chris Cameron wrote: > I added > > deb http://chaschperli.ch/debian intrepid-bacula/ deb-src > http://chaschperli.ch/debian intrepid-bacula/ > > to my /etc/apt/sources.list and get the following warning: > > W: GPG error: http://chaschperli.ch intrepid-bacula/ Release: The > following signatures couldn't be verified because the public key is not > available: NO_PUBKEY 2D787F5AA54185E4 > W: You may want to run apt-get update to correct these problems > > Is that a problem? this is a security warning, because the gnupg key is not present. as root: wget -O - -q http://chaschperli.ch/debian/pubkey.asc | apt-key add - then "aptitude update" and the warning goes away. - Thomas -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
[Bacula-users] Bat help files
Hello, It appears that the bat help files are not getting properly installed -- at least in version 2.5 (I never really thought about it in 2.4.x). Can anyone tell me what is the default location that applications such as Bacula are supposed to install their help files? Regards, Kern -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Debian Packages: Bacula Beta 2.5.42-b2
I added deb http://chaschperli.ch/debian intrepid-bacula/ deb-src http://chaschperli.ch/debian intrepid-bacula/ to my /etc/apt/sources.list and get the following warning: W: GPG error: http://chaschperli.ch intrepid-bacula/ Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 2D787F5AA54185E4 W: You may want to run apt-get update to correct these problems Is that a problem? ~Chris Cameron Sent from: Houston TX United States. On Mon, Mar 23, 2009 at 2:10 AM, Thomas Mueller wrote: > Hi Chris > > > > Would you also for Ubuntu? :) > > Chris Cameron > > here they are: > > README: > - use at your own risk > - openssl is enabled > - no qt/wx gui's included > - maybe one has to apply the DB upgrade himself: the sql-file is found > here /usr/share/dbconfig-common/data/bacula-director-mysql/upgrade/ > mysql/2.5.0 (replace mysql with other flavors) > - these packages are not tested > - if somethings not working with the package, write me and i try to fix it > > for intrepid i386/amd64 add: > deb http://chaschperli.ch/debian intrepid-bacula/ > deb-src http://chaschperli.ch/debian intrepid-bacula/ > > for hardy i386/amd64 add: > deb http://chaschperli.ch/debian hardy-bacula/ > deb-src http://chaschperli.ch/debian hardy-bacula/ > > > > -- > Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are > powering Web 2.0 with engaging, cross-platform capabilities. Quickly and > easily build your RIAs with Flex Builder, the Eclipse(TM)based development > software that enables intelligent coding and step-through debugging. > Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com > ___ > Bacula-users mailing list > Bacula-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/bacula-users > -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Purged, recycled and could not connect to client
On Monday 23 March 2009 8:54:39 am Personal Técnico wrote: > Hi, > [snip] > How can I configure bacula for avoiding a previous purging, prunning and recycling pool if client is not accessible? Set up a run before job that tries to contact the client. Have it abort the job if the client isn't accessible. All the stuff to set up a volume happens after that job is run. Make sure the job runs on the director, is set to abort on fail, and returns the proper exit codes, etc. Brian -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
[Bacula-users] Purged, recycled and could not connect to client
Hi, I'm getting a big problem (for me...) during a client backup. Problem is detailed here: Bacula detects pararemeters pool and decide to purge and prune volume After purge and prune, it tries to start backup, but client is not available, so backup fails Backup is not done, but volume has been purged, pruned and marked as recycled, so user ("owner" of the pool) has lost his previosly backup (or more than one) This is the email received from bacula: 23-Mar 13:01 aosnap JobId 5436: Start Backup JobId 5436, Job=Backup-User.2009-03-23_13.00.35 23-Mar 13:01 aosnap JobId 5436: Max configured use duration exceeded. Marking Volume "Backup-User0258" as Used. 23-Mar 13:01 aosnap JobId 5436: There are no more Jobs associated with Volume "Backup-User0242". Marking it purged. 23-Mar 13:01 aosnap JobId 5436: All records pruned from Volume "Backup-User0242"; marking it "Purged" 23-Mar 13:01 aosnap JobId 5436: Recycled volume "Backup-User0242" 23-Mar 13:01 aosnap JobId 5436: Using Device "BaculaBackups" 23-Mar 13:01 aosnap JobId 5436: Warning: bsock.c:123 Could not connect to Client: client-fd on xxx.xxx.xxx.xxx:9102. ERR=No route to host Retrying ... 23-Mar 13:08 aosnap JobId 5436: Warning: bsock.c:123 Could not connect to Client: client-fd on xxx.xxx.xxx.xxx:9102. ERR=No route to host Retrying ... 23-Mar 13:15 aosnap JobId 5436: Warning: bsock.c:123 Could not connect to Client: client-fd on xxx.xxx.xxx.xxx:9102. ERR=No route to host Retrying ... 23-Mar 13:16 aosnap JobId 5436: Fatal error: bsock.c:129 Unable to connect to Client: client-fd on xxx.xxx.xxx.xxx:9102. ERR=Interrupted system call 23-Mar 13:16 aosnap JobId 5436: Error: Bacula aosnap 2.4.3 (10Oct08): 23-Mar-2009 13:16:28 Build OS: x86_64-unknown-linux-gnu suse 10 JobId: 5436 Job: Backup-User.2009-03-23_13.00.35 Backup Level: Incremental, since=2009-03-20 13:32:44 Client: "client-fd" 2.4.3 (10Oct08) Linux,Cross-compile,Win32 FileSet: "Usuario-Windows" 2008-11-24 12:34:05 Pool: "User" (From Job resource) Storage: "BackupRAID5" (From Pool resource) Scheduled time: 23-Mar-2009 13:00:00 Start time: 23-Mar-2009 13:01:16 End time: 23-Mar-2009 13:16:28 Elapsed time: 15 mins 12 secs Priority: 12 FD Files Written: 0 SD Files Written: 0 FD Bytes Written: 0 (0 B) SD Bytes Written: 0 (0 B) Rate: 0.0 KB/s Software Compression: None VSS: no Storage Encryption: no Volume name(s): Volume Session Id: 236 Volume Session Time: 1236851433 Last Volume Bytes: 1 (1 B) Non-fatal FD errors: 0 SD Errors: 0 FD termination status: SD termination status: Waiting on FD Termination: *** Backup Error *** Now, after backups has failed, this is bacula status: *list media pool=User +---+-+---+-++--+--+-+--+---+---+-+ | MediaId | VolumeName | VolStatus | Enabled | VolBytes | VolFiles | VolRetention | Recycle | Slot | InChanger | MediaType | LastWritten | +---+-+---+-++--+--+-+--+---+---+-+ | 242 | Backup-User0242 | Recycle | 1 | 1 | 0 | 604,800 | 1 | 0 | 0 | File | 2009-02-20 13:51:34 | | 258 | Backup-User0258 | Used | 1 | 13,361,641,192 | 3 | 604,800 | 1 | 0 | 0 | File | 2009-03-20 13:53:09 | +--+-+--+-+-+-+-++-+---++---+ Pool definition is: Pool { Name = User Label Format = "Backup-User" Use Volume > Pool Type = Backup Recycle = yes AutoPrune = yes Storage = BackupRAID5 Volume Use Duration = 1 months Volume Retention = 7 days Maximum Volume Jobs = 0 Maximum Volumes = 2 Recycle Oldest Volume = yes Purge Oldest Volume = yes Maximum Volume Bytes = 15GB } How can I configure bacula for avoiding a previous purging, prunning and recycling pool if client is not accessible? Thanks. -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding
Re: [Bacula-users] Debian Lenny Bacula screw up.
> I have just "upgraded"(?) my bacula server to debian version lenny and > there appears to be a major screwup in their package for this version. > > First part was it objected to "AcceptAnyVolume=Yes in each pool directive. > I believe that directive went away years ago because the default is to accept any volume. http://www.mail-archive.com/bacula-users@lists.sourceforge.net/msg22720.html > > Second is I can no longer modify a requested job to place its out put in > a selected tape pool. > Although I do not use that often I think you can still do that in bconsole. John -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
[Bacula-users] Migration with Autochanger - From Tape to Tape
Hi there I want to migrate some Jobs from tape to tape, in the same Storage, so I can clean the old tapes and keep the works I'm interested in. But I've found "23-mar 13:23 bacula-dir JobId 2067: Fatal error: Job canceled. Attempt to read and write same device." Is there any way I can go through, or do I need to create two migrate jobs (from autochanger to file, and the back to the autochanger) ? Thank you for you help Some of my configs: Pool { Name = Servers Pool Type = Backup Recycle = yes AutoPrune = yes Volume Retention = 1 month Recycle Oldest Volume = yes Purge Oldest Volume = yes Storage = Scalar24 NextPool = Historical } Pool { Name = Historical Pool Type = Backup Autoprune = no Recycle = no Storage = Scalar24 } Job { Name = "MigrateServer" Type = Migrate Level = Full Client = motoko-fd FileSet = "FileSetServer" Messages = Standard Pool = Servers Maximum Concurrent Jobs = 4 Selection Type = SQLQuery Selection Pattern = "SELECT JobId FROM Job WHERE JobId=845;" } Kindly Regards -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
[Bacula-users] Debian Lenny Bacula screw up.
I have just "upgraded"(?) my bacula server to debian version lenny and there appears to be a major screwup in their package for this version. First part was it objected to "AcceptAnyVolume=Yes in each pool directive. Second is I can no longer modify a requested job to place its out put in a selected tape pool. I usually run the catalog backup as a testing job. It is always of level=Full and as the incremental tape is usually in the drive, I modify the job to use the incremental pool, but this jo modification is being ignored. Looking for clubies as to where the problem is and how I can fix it. T.I.A. -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] DBcheck speed
Andreas Schuldei schrieb: > On Mon, Mar 16, 2009 at 5:47 PM, Kevin Keane wrote: >> I don't know enough about the internals of bacula, but my gut feeling is >> that there is some kind of database corruption. You may want to run dbcheck. > > Now i am running dbcheck for ~18h. is there a way to pull out the > breaks or see how far it got? http://wiki.bacula.org/doku.php?id=faq#why_does_dbcheck_take_forever_to_run -- Tilman Schmidt Phoenix Software GmbH Bonn, Germany signature.asc Description: OpenPGP digital signature -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] limit client console messages
On Thu, 19 Mar 2009 11:41:01 +0100, Ulrich Leodolter wrote: > How can i limit console messages to specific client? > > If i call bconsole on clientxyz i'd like to see > only messages related to clientxyz-fd Don't think there is a bconsole command for this, but you could do something like this: echo "autodisplay on" | bconsole >/tmp/foo Then grep "hostname" on /tmp/foo, make it a pipe for continuous use etc. Unfortunately only a part of the lines is prepended by the proper hostname, so this is only a quick workaround. A better way is to use a script instead (or in front) of /sbin/bsmtp for the mailcommand facility in the Messages {} resource, since this is already splitting output per job. -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] May I backup Mysql databases and tables in Bacula?
openbsd shen schrieb: > I want backup my Mysql databases and tables, may I do it in Bacula? There's a recipe for this on the Wiki: http://wiki.bacula.org/doku.php?id=application_specific_backups:mysql Basically, what you do is dump your databases to files and then back those up with Bacula. HTH T. -- Tilman Schmidt Phoenix Software GmbH Bonn, Germany signature.asc Description: OpenPGP digital signature -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] How to unmount filesystem
Ralf Brinkmann schreef: > K. Lelong schrieb: > > > Something similar happens when I run a job for the disk : the > unmounted disk is mounted, but afterwards I need to manually unmount it > (umount ...) to eject the disk. > > What am I missing ? > > with your last backup job include e.g. the following line: > > RunAfterJob = "/etc/bacula/backup-end.sh" > > You have to write a script "backup-end.sh" e.g. that will unmount the > device. Make sure that no process has open files on that device. > Thanks for your response, I'm going to try this (again). But, why is there an option "Unmount Command" if it does not work ? Is it old, not used any more ? Or is it used for different purposes ? Regards, Koenraad Lelong. -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users
Re: [Bacula-users] Debian Packages: Bacula Beta 2.5.42-b2
Hi Chris > Would you also for Ubuntu? :) > Chris Cameron here they are: README: - use at your own risk - openssl is enabled - no qt/wx gui's included - maybe one has to apply the DB upgrade himself: the sql-file is found here /usr/share/dbconfig-common/data/bacula-director-mysql/upgrade/ mysql/2.5.0 (replace mysql with other flavors) - these packages are not tested - if somethings not working with the package, write me and i try to fix it for intrepid i386/amd64 add: deb http://chaschperli.ch/debian intrepid-bacula/ deb-src http://chaschperli.ch/debian intrepid-bacula/ for hardy i386/amd64 add: deb http://chaschperli.ch/debian hardy-bacula/ deb-src http://chaschperli.ch/debian hardy-bacula/ -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ___ Bacula-users mailing list Bacula-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bacula-users