[Bacula-users] Mac OS X client fails to backup

2011-07-12 Thread tscollins
Found the problem was with the Linux firewall not with any of the configuration 
files.

+--
|This was sent by tscoll...@languagemate.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
AppSumo Presents a FREE Video for the SourceForge Community by Eric 
Ries, the creator of the Lean Startup Methodology on "Lean Startup 
Secrets Revealed." This video shows you how to validate your ideas, 
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Mac OS X client fails to backup

2011-07-11 Thread Sean Clark
On 07/11/2011 02:47 PM, tscollins wrote:
> ERR=Connection refused
Mac firewalls are a huge pain...

Check the firewall settings on the client in the "Preferences->Security" 
section, AND check "ipfw list" from the console to see if the rules 
there might be blocking access - evidently these are two separate 
firewall systems, or at least they behave like they are.

I've also had a couple of Mac clients where I've had to explicitly allow 
bacula-fd with "socketfilterfw" (which doesn't seem to be well 
documented), so if you start getting "BAD STORAGE" errors reported by 
the client (because bacula-fd isn't being allowed to make the outgoing 
connection to the storage daemon) you might need to do this, too.



--
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Mac OS X client fails to backup

2011-07-11 Thread tscollins
OK I have simplified my configuration files to just have one Mac OS X client 
and here they are:

Mac1 bacula-fd.conf
Director {
  Name = dracula-dir
  Password = "blah"
}
FileDaemon {
  Name = Mac1-fd
  FDport = 9102
  WorkingDirectory = /private/var/bacula/working
  Pid Directory = /var/run
  Maximum Concurrent Jobs = 20
}
Messages {
  Name = Standard
  director = dracula-dir = all, !skipped, !restored
}

Dracula bacula-dir.conf
Director {
  Name = dracula-dir
  DIRport = 9101
  QueryFile = "/root/bacula/bin/query.sql"
  WorkingDirectory = "/root/bacula/bin/working"
  PidDirectory = "/root/bacula/bin/working"
  Maximum Concurrent Jobs = 1
  Password = "blah"
  Messages = Daemon
}
JobDefs {
  Name = "DefaultJob"
  Type = Backup
  Level = Incremental
  Client = Mac1-fd 
  FileSet = "Full Set"
  Schedule = "WeeklyCycle"
  Storage = File
  Messages = Standard
  Pool = File
  Priority = 10
  Write Bootstrap = "/root/bacula/bin/working/%c.bsr"
}
Job {
  Name = "BackupClient1"
  JobDefs = "DefaultJob"
}
Job {
  Name = "BackupCatalog"
  JobDefs = "DefaultJob"
  Level = Full
  FileSet="Catalog"
  Schedule = "WeeklyCycleAfterBackup"
  RunBeforeJob = "/root/bacula/bin/make_catalog_backup.pl MyCatalog"
  RunAfterJob  = "/root/bacula/bin/delete_catalog_backup"
  Write Bootstrap = "/root/bacula/bin/working/%n.bsr"
  Priority = 11
}
Job {
  Name = "RestoreFiles"
  Type = Restore
  Client= Mac1-fd 
  FileSet="Full Set"  
  Storage = File  
  Pool = Default
  Messages = Standard
  Where = /Users/testuser/test/bacula-restores
}
FileSet {
  Name = "Full Set"
  Include {
Options {
  signature = MD5
  hfsplussupport = yes
}
File = "/Users/testuser/Downloads/"
  }
  Exclude {
File = "/Users/testuser/.Trash"
File = "/Users/testuser/Library/Caches"
  }
}
Schedule {
  Name = "WeeklyCycle"
  Run = Full 1st sun at 23:05
  Run = Differential 2nd-5th sun at 23:05
  Run = Incremental mon-sat at 23:05
}
Schedule {
  Name = "WeeklyCycleAfterBackup"
  Run = Full sun-sat at 23:10
}
FileSet {
  Name = "Catalog"
  Include {
Options {
  signature = MD5
}
File = "/root/bacula/bin/working/bacula.sql"
  }
}
Client {
  Name = Mac1-fd
  Address = 192.168.40.45
  FDPort = 9102
  Catalog = MyCatalog
  Password = "blah"
  File Retention = 30 days
  Job Retention = 6 months
  AutoPrune = yes
}
Storage {
  Name = File
  Address = dracula
  SDPort = 9103
  Password = "blah"
  Device = FileStorage
  Media Type = File
}
Catalog {
  Name = MyCatalog
  dbname = "bacula"; dbuser = "bacula"; dbpassword = ""
}
Messages {
  Name = Standard
  mailcommand = "/root/bacula/bin/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" 
-s \"Bacula: %t %e of %c %l\" %r"
  operatorcommand = "/root/bacula/bin/bsmtp -h localhost -f \"\(Bacula\) 
\<%r\>\" -s \"Bacula: Intervention needed for %j\" %r"
  mail = root@localhost = all, !skipped
  operator = root@localhost = mount
  console = all, !skipped, !saved
  append = "/root/bacula/bin/working/log" = all, !skipped
  catalog = all
}
Messages {
  Name = Daemon
  mailcommand = "/root/bacula/bin/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" 
-s \"Bacula daemon message\" %r"
  mail = root@localhost = all, !skipped
  console = all, !skipped, !saved
  append = "/root/bacula/bin/working/log" = all, !skipped
}
Pool {
  Name = Default
  Pool Type = Backup
  Recycle = yes
  AutoPrune = yes
  Volume Retention = 365 days
}
Pool {
  Name = File
  Pool Type = Backup
  Recycle = yes
  AutoPrune = yes
  Volume Retention = 365 days
  Maximum Volume Bytes = 50G
  Maximum Volumes = 100
}
Pool {
  Name = Scratch
  Pool Type = Backup
}
Console {
  Name = dracula-mon
  Password = "blah"
  CommandACL = status, .status
}

Now when I try to run the job I see a 'Fatal error' in the console:
run job="BackupClient1" fileset="Full Set" level="Incremental" client="Mac1-fd" 
pool="Default" storage="File" priority="10" when="2011-07-11 15:19:19" yes 
Job queued. JobId=1
11-Jul 15:17 dracula-dir JobId 0: Fatal error: bsock.c:134 Unable to connect to 
Client: Mac-fd on 192.168.40.45:9102. ERR=Connection refused
11-Jul 15:19 dracula-dir JobId 1: No prior Full backup Job record found.
11-Jul 15:19 dracula-dir JobId 1: No prior or suitable Full backup found in 
catalog. Doing FULL backup.
11-Jul 15:19 dracula-dir JobId 1: Start Backup JobId 1, 
Job=BackupClient1.2011-07-11_15.19.40_06
11-Jul 15:19 dracula-dir JobId 1: Using Device "FileStorage"

Please is anyone has any idea I would greatly appreciate the help as I have 
been working on this for the past week and getting nowhere!

+--
|This was sent by tscoll...@languagemate.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
All of the data generated in your IT infrastru

[Bacula-users] Mac OS X client fails to backup

2011-07-10 Thread tscollins
I'm new to Bacula and am having trouble getting backups of two Mac OS X clients 
to work. I think the problem is with my configuration and hope someone can 
correct my errors. Here are the conf files:

Mac1 bacula-fd.conf
Director {
  Name = dracula-dir
  Password = "blah"
}
Director {
  Name = dracula-mon
  Password = "blah"
  Monitor = yes
}
FileDaemon {
  Name = Mac1-fd
  FDport = 9102
  WorkingDirectory = /private/var/bacula/working
  Pid Directory = /var/run
  Maximum Concurrent Jobs = 20
}
Messages {
  Name = Standard
  director = dracula-dir = all, !skipped, !restored
}

Mac2 bacula-fd.conf
Director {
  Name = dracula-dir
  Password = "blah"
}
Director {
  Name = dracula-mon
  Password = "blah"
  Monitor = yes
}
FileDaemon {
  Name = Mac2
  FDport = 9102
  WorkingDirectory = /private/var/bacula/working
  Pid Directory = /var/run
  Maximum Concurrent Jobs = 20
}
Messages {
  Name = Standard
  director = Mac2-dir = all, !skipped, !restored
}

Server bacula-dir.conf
Director {
  Name = dracula-dir
  DIRport = 9101
  QueryFile = "/root/bacula/bin/query.sql"
  WorkingDirectory = "/root/bacula/bin/working"
  PidDirectory = "/root/bacula/bin/working"
  Maximum Concurrent Jobs = 1
  Password = "blah"
  Messages = Daemon
}
JobDefs {
  Name = "DefaultJob"
  Type = Backup
  Level = Incremental
  Client = dracula-fd 
  FileSet = "Full Set"
  Schedule = "WeeklyCycle"
  Storage = File
  Messages = Standard
  Pool = File
  Priority = 10
  Write Bootstrap = "/root/bacula/bin/working/%c.bsr"
}
Job {
  Name = "BackupClient1"
  JobDefs = "DefaultJob"
}
Job {
   Name = "Mac1-test"
   Client = Mac1-fd
   JobDefs = "DefaultJob"
   FileSet = "Mac1_test"
}
Job {
   Name = "Mac2-test"
   Client = Mac2-fd
   JobDefs = "DefaultJob"
   FileSet = "Mac2_test"
}
Job {
  Name = "BackupCatalog"
  JobDefs = "DefaultJob"
  Level = Full
  FileSet="Catalog"
  Schedule = "WeeklyCycleAfterBackup"
  RunBeforeJob = "/root/bacula/bin/make_catalog_backup.pl MyCatalog"
  RunAfterJob  = "/root/bacula/bin/delete_catalog_backup"
  Write Bootstrap = "/root/bacula/bin/working/%n.bsr"
  Priority = 11   # run after main backup
}
Job {
  Name = "RestoreFiles"
  Type = Restore
  Client=dracula-fd 
  FileSet="Full Set"  
  Storage = File  
  Pool = Default
  Messages = Standard
  Where = /tmp/bacula-restores
}
FileSet {
  Name = "Full Set"
  Include {
Options {
  signature = MD5
}
File = /root/bacula/bin
  }
  Exclude {
File = /root/bacula/bin/working
File = /tmp
File = /proc
File = /tmp
File = /.journal
File = /.fsck
  }
}
FileSet {
  Name = "Mac1_test"
  Include {
Options {
  hfsplussupport = yes
}
File = /Users/tscollins/Download
  }
}
FileSet {
  Name = "Mac2_test"
  Include {
Options {
  hfsplussupport = yes
}
File = /Users/Technology
  }
}
Schedule {
  Name = "WeeklyCycle"
  Run = Full 1st sun at 23:05
  Run = Differential 2nd-5th sun at 23:05
  Run = Incremental mon-sat at 23:05
}
Schedule {
  Name = "WeeklyCycleAfterBackup"
  Run = Full sun-sat at 23:10
}
FileSet {
  Name = "Catalog"
  Include {
Options {
  signature = MD5
}
File = "/root/bacula/bin/working/bacula.sql"
  }
}
Client {
  Name = dracula-fd
  Address = dracula
  FDPort = 9102
  Catalog = MyCatalog
  Password = "blah"
  File Retention = 30 days
  Job Retention = 6 months
  AutoPrune = yes
}
Client {
  Name = Mac1-fd
  Address = Mac1
  FDPort = 9102
  Catalog = MyCatalog
  Password = "blah"
  File Retention = 30 days
  Job Retention = 6 months
  AutoPrune = yes
}
Client {
  Name = Mac2-fd
  Address = Mac2
  FDPort = 9102
  Catalog = MyCatalog
  Password = "blah"
  File Retention = 30 days
  Job Retention = 6 months
  AutoPrune = yes
}
Storage {
  Name = File
  Address = dracula
  SDPort = 9103
  Password = "blah"
  Device = FileStorage
  Media Type = File
}
Catalog {
  Name = MyCatalog
  dbname = "bacula"; dbuser = "bacula"; dbpassword = ""
}
Messages {
  Name = Standard
  mailcommand = "/root/bacula/bin/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" 
-s \"Bacula: %t %e of %c %l\" %r"
  operatorcommand = "/root/bacula/bin/bsmtp -h localhost -f \"\(Bacula\) 
\<%r\>\" -s \"Bacula: Intervention needed for %j\" %r"
  mail = root@localhost = all, !skipped
  operator = root@localhost = mount
  console = all, !skipped, !saved
  append = "/root/bacula/bin/working/log" = all, !skipped
  catalog = all
}
Messages {
  Name = Daemon
  mailcommand = "/root/bacula/bin/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" 
-s \"Bacula daemon message\" %r"
  mail = root@localhost = all, !skipped
  console = all, !skipped, !saved
  append = "/root/bacula/bin/working/log" = all, !skipped
}
Pool {
  Name = Default
  Pool Type = Backup
  Recycle = yes
  AutoPrune = yes
  Volume Retention = 365 days
}
Pool {
  Name = File
  Pool Type = Backup
  Recycle = yes
  AutoPrune = yes
  Volume Retention = 365 days
  Maximum Volume Bytes = 50G
  Maxim

[Bacula-users] Mac OS X Leopard and Bacula 2.2.8 (ACLs)

2009-04-16 Thread geniuspix

javascript:emoticon('8)') I´m looking for a GUI to Restore my Backuped files in 
Mac OS Leopard. Does anyone know a good method to do this?

+--
|This was sent by cruz.c...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Mac OS/X Bacula Client Binaries (2.4.4)

2009-03-19 Thread Steve Polyack
I've provided these before, but since a few versions have passed us by I 
have updated these to Bacula 2.4.4.  These are client binaries only.  If 
anyone needs director, or storage daemon binaries, let me know and I 
should be able to get them built as well.

MacOSX i386 (built on 10.5.2-i686) 
http://people.collaborativefusion.com/~spolyack/bacula-fd-osx-i386.bz2

MacOSX PPC (built on 10.5.1-ppc) 
http://people.collaborativefusion.com/~spolyack/bacula-fd-osx-ppc.bz2



--
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] Mac OS X Leopard and Bacula 2.2.8 (ACLs)

2008-02-06 Thread Martin Simmons
> On Tue, 5 Feb 2008 14:31:57 -1000, Hydro Meteor said:
> 
> On 2/4/08, Martin Simmons <[EMAIL PROTECTED]> wrote:
> >
> > > On Sat, 2 Feb 2008 00:17:29 -1000, Hydro Meteor said:
> > >
> > > I wonder what would need to be done in the Bacula source to properly
> > capture
> > > and restore ACL metadata on file systems mounted to Mac OS X Leopard (or
> > > Tiger for that matter) operating systems?
> > >
> > > Does anyone have any suggestions?
> >
> > It looks like Apple's acl_get_file does not support the ACL_TYPE_DEFAULT
> > and
> > ACL_TYPE_ACCESS types of query.  Someone else has enjoyed this problem
> > too:
> >
> > http://xarchiver.blogspot.com/2007/04/mac-os-x-acls-added.html
> 
> 
> Martin, thank you for pointing this out. I sent an email to Rob Braun (who
> is the author of the page on the blog your URI links to) to ask him if his
> statements made in April 2007 (about ACL API discrepancies on Mac OS X Tiger
> 10.4) continue to apply now on Mac OS X Leopard 10.5 ...

They do, AFAICS from gdb.

__Martin

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Mac OS X Leopard and Bacula 2.2.8 (ACLs)

2008-02-05 Thread Hydro Meteor
On 2/4/08, Martin Simmons <[EMAIL PROTECTED]> wrote:
>
> > On Sat, 2 Feb 2008 00:17:29 -1000, Hydro Meteor said:
> >
> > I wonder what would need to be done in the Bacula source to properly
> capture
> > and restore ACL metadata on file systems mounted to Mac OS X Leopard (or
> > Tiger for that matter) operating systems?
> >
> > Does anyone have any suggestions?
>
> It looks like Apple's acl_get_file does not support the ACL_TYPE_DEFAULT
> and
> ACL_TYPE_ACCESS types of query.  Someone else has enjoyed this problem
> too:
>
> http://xarchiver.blogspot.com/2007/04/mac-os-x-acls-added.html


Martin, thank you for pointing this out. I sent an email to Rob Braun (who
is the author of the page on the blog your URI links to) to ask him if his
statements made in April 2007 (about ACL API discrepancies on Mac OS X Tiger
10.4) continue to apply now on Mac OS X Leopard 10.5 ... I have not received
a response from him yet but if I do receive one I will share it on this
mailing list. One way or another, there ought to be a way to get to the
bottom of what Apple has done (differently) with POSIX ACLs and then
hopefully they can be incorporated into Bacula. Many of us want to use
Bacula for back up and restore purposes (including very importantly that
Bacula is open source / GPL) on Mac OS X and we do not want to become
dependent on Apple's closed-source Time Machine software. Time Machine is
probably going to be fine for mass consumers but for those of us running
professional systems on OS X Server we will want control of our file system
backup and recovery with Bacula.

Cheers,

Hydro


__Martin
>
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Mac OS X Leopard and Bacula 2.2.8 (ACLs)

2008-02-04 Thread Martin Simmons
> On Sat, 2 Feb 2008 00:17:29 -1000, Hydro Meteor said:
> 
> I wonder what would need to be done in the Bacula source to properly capture
> and restore ACL metadata on file systems mounted to Mac OS X Leopard (or
> Tiger for that matter) operating systems?
> 
> Does anyone have any suggestions?

It looks like Apple's acl_get_file does not support the ACL_TYPE_DEFAULT and
ACL_TYPE_ACCESS types of query.  Someone else has enjoyed this problem too:

http://xarchiver.blogspot.com/2007/04/mac-os-x-acls-added.html

__Martin

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Mac OS X Leopard and Bacula 2.2.8 (ACLs)

2008-02-02 Thread Hydro Meteor
On 2/2/08, Hydro Meteor <[EMAIL PROTECTED]> wrote:
>
>
> On 2/2/08, Ralf Gross <[EMAIL PROTECTED]> wrote:
> >
> > Hydro Meteor schrieb:
> > >
> > > For those interested in running Bacula 2.2.8 on Mac OS X 10.5.1(Leopard)
> > > including Leopard Server, I can confirm, with a simple Bacula backup
> > and
> > > restore test, that Bacula does not capture or restore file system
> > resources
> > > that have Access Control List (ACL) metadata only. Files with Mac OS X
> > > Extended Attributs (EAs) which EAs are not ACLs seem to be captured
> > and
> > > restored just fine.
> >
> > You used the 'ACL Support = yes' directive?
>
>
> Ralph, thank you.
>
> Yes, I did include aclsupport=yes in the FileSet resource.
>

As a follow up, I tried several variations. For example, the File Daemon I
had configured to run as the root user (per best practice suggested by the
Bacula documentation and community), but just in case there was an issue, I
also ran the Storage and Director daemons as the root user (all on the same
system -- on Leopard Server -- even though logically there was really not
much sense in doing this, but I wanted everything as root to see if the root
user was the only user that could capture ACLs on the file system). The
change to root did not make a difference.

The ACL metadata appears not to be captured by the Bacula File Daemon. For
example, after doing a backup, in the Bacula console, I typed the "dir"
command (instead of the "ls") command and noticed the lack of the expected
"+" character (in the yellow highlighted privileges output of "dir" in the
Bacula Console below):

drwx--   2 hydro staff  136  2008-02-02 16:43:50
*/Users/hydro/Movies/

With the aclsupport=yes for the FileSet resource, I am now at a loss. Mac OS
X Server (Leopard) is considered POSIX.1e compliant:

http://www.apple.com/macosx/technology/unix.html

Leopard is an Open Brand UNIX 03 Registered Product, conforming to the SUSv3
> and POSIX 1003.1 specifications for the C API, Shell Utilities, and
> Threads. Since Leopard can compile and run all your existing UNIX code, you
> can deploy it in environments that demand full conformance — complete with
> hooks to maintain compatibility with existing software.
>

and:

http://developer.apple.com/documentation/Darwin/Reference/Manpages/man3/acl.3.html

*acl* -- introduction to the POSIX.1e ACL security API
>
>
According to the Bacula User's Guide, POSIX 1003.1 should be supported on
Mac OS X Leopard:

aclsupport=yes—no The default is no. If this option is set to yes, and
> you have the POSIX libacl installed on your system, Bacula will
> backup the file and directory UNIX Access Control Lists (ACL) as
> defined in IEEE Std 1003.1e draft 17 and "POSIX.1e" (abandoned).
>

I wonder, what is required to version Bacula's ACL support to work with
Apple's POSIX.1e implementation?

Thank you,

Hydro

Also, ACL support was noted and enabled when I ran configure when
> configuring the Bacula 2.2.8 source on Leopard Server.
>
> There was a discussion regarding extended attributes on the dev list
> > recently.
> >
> > http://thread.gmane.org/gmane.comp.sysutils.backup.bacula.devel/11066
>
>
> Interesting.
>
> Thanks,
>
> Hydro
>
>
> Ralf
>
>
>
>
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Mac OS X Leopard and Bacula 2.2.8 (ACLs)

2008-02-02 Thread Hydro Meteor
On 2/2/08, Ralf Gross <[EMAIL PROTECTED]> wrote:
>
> Hydro Meteor schrieb:
> >
> > For those interested in running Bacula 2.2.8 on Mac OS X 10.5.1(Leopard)
> > including Leopard Server, I can confirm, with a simple Bacula backup and
> > restore test, that Bacula does not capture or restore file system
> resources
> > that have Access Control List (ACL) metadata only. Files with Mac OS X
> > Extended Attributs (EAs) which EAs are not ACLs seem to be captured and
> > restored just fine.
>
> You used the 'ACL Support = yes' directive?


Ralph, thank you.

Yes, I did include aclsupport=yes in the FileSet resource.

Also, ACL support was noted and enabled when I ran configure when
configuring the Bacula 2.2.8 source on Leopard Server.

There was a discussion regarding extended attributes on the dev list
> recently.
>
> http://thread.gmane.org/gmane.comp.sysutils.backup.bacula.devel/11066


Interesting.

Thanks,

Hydro


Ralf
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Mac OS X Leopard and Bacula 2.2.8 (ACLs)

2008-02-02 Thread Ralf Gross
Hydro Meteor schrieb:
> 
> For those interested in running Bacula 2.2.8 on Mac OS X 10.5.1 (Leopard)
> including Leopard Server, I can confirm, with a simple Bacula backup and
> restore test, that Bacula does not capture or restore file system resources
> that have Access Control List (ACL) metadata only. Files with Mac OS X
> Extended Attributs (EAs) which EAs are not ACLs seem to be captured and
> restored just fine.

You used the 'ACL Support = yes' directive?

There was a discussion regarding extended attributes on the dev list
recently.

http://thread.gmane.org/gmane.comp.sysutils.backup.bacula.devel/11066

Ralf

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Mac OS X Leopard and Bacula 2.2.8 (ACLs)

2008-02-02 Thread Hydro Meteor
Hello all --

For those interested in running Bacula 2.2.8 on Mac OS X 10.5.1 (Leopard)
including Leopard Server, I can confirm, with a simple Bacula backup and
restore test, that Bacula does not capture or restore file system resources
that have Access Control List (ACL) metadata only. Files with Mac OS X
Extended Attributs (EAs) which EAs are not ACLs seem to be captured and
restored just fine.

An example:

In the home directory of local domain directory users (such as the user with
a short name of "hydro"), Leopard has a standard set of folder names that
each user gets from the factory when a new home directory is created by the
Apple administrative tools, like these:

drwxr-xr-x   4 root  admin170 Jan 21 22:40 ..
> drwxr-xr-x+  3 hydro   staff170 Jan 21 22:40 Sites
> drwxr-xr-x+  3 hydro   staff170 Jan 21 22:40 Public
> drwx--+ 16 hydro   staff   1292 Jan 22 01:21 Pictures
> drwx--+  3 hydro   staff170 Jan 22 01:40 Music
> drwx--+  7 hydro   staff646 Jan 22 01:41 Movies
> drwx--+ 39 hydro   staff   1394 Jan 30 05:48 Library
> drwx--+  4 hydro   staff238 Jan 31 13:00 Documents
> drwxr-xr-x+ 20 hydro   staff952 Jan 31 19:55 .
> drwx--+  2 hydro   staff170 Feb  1 00:39 Downloads
> -rw-r--r--@  1 hydro   staff  12292 Feb  1 16:50 .DS_Store
> drwx--   2 hydro   staff102 Feb  1 16:52 .Trash
> drwx--+  4 hydro   staff748 Feb  1 19:31 Desktop
> -rw---   1 hydro   staff   4769 Feb  1 19:37 .bash_history
>

In the output of the ls command, you can see that there are some folders
with plus "+" characters in the file information adjacent to the read/write
privileges (I bold faced and highlighted the Movies folder). According to
various documentation and the ls man page, the "+" character means that the
Movies directory itself has Access Control List metadata only. From what I
have read on the web and in various Apple documentation, Mac OS X
implementation of ACLs are a typr of Extended Attributes(EAs, but not all
EAs are ACLs. An example of a file that has EA metadata but which EA
metadata is not an ACL, is the .DS_Store file (also highlighted and bold
faced in the above excerpt).

Bacula has zero problems capturing the .DS_Store document and restoring it
(I backed up the original home directory with Bacula 2.2.8 and restored it
to a different location on my hard drive). However, the folder resources
with ACL-only "+" characters were not restored by Bacula with the ACL
metadata and thus the restoration ended up looking like (with the "+"
missing):

drwx--  7 hydro   staff646 Jan 22 01:41 Movies
>

To double confirm this, the ls command-line program (with the "e" switch) in
Leopard can read the ACL-only metadata. For example, from the original:

$ ls -altre Movies
>

yields information such as about who has access to the Movies folder:

drwx--+  2 hydro  staff  102 Jan 21 03:46 .
>  0: group:everyone deny delete
>

But when doing the same on the restored copy from Bacula, I confirm the
metadata is missing:

$ ls -altre Movies
>

yields:

drwx--  2 hydro  staff  102 Jan 21 03:46 .
>

Access Control Lists have been around in Mac OS X for some time (for sure in
Tiger) but Leopard is now starting to enforce them. On my Tiger Server
systems, I could disable ACLs. On Leopard, I can also disable them but every
time the machine reboots, ACLs are re-enabled automatically by Leopard. The
great hand of Apple is saying to us "tsk tsk, you should use ACLs"! So we
can override Apple by disabling ACLs on disc volumes shortly after they have
mounted (using a cron script to run the ACL disable tool), but this strikes
me as a kludge that is not necessary.

I wonder what would need to be done in the Bacula source to properly capture
and restore ACL metadata on file systems mounted to Mac OS X Leopard (or
Tiger for that matter) operating systems?

Does anyone have any suggestions?

Best regards,

Hydro
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Mac os X

2007-09-21 Thread Erich Prinz
I personally haven't played with this yet, but check the options  
for ./configure - there may be an option to tell the compiler the  
path to qt4.

There are quite a few other Macophiles lurking in the list that might  
have more intel for you.

Erich


On Sep 21, 2007, at 3:36 PM, William McInnis wrote:

> Ok so iam working on a full DMG file for mac os x with the BAT and  
> bconsole
> working
>
> I got the bconsole working but when I try to compile BAT it says I  
> need qt4
> installed well I have qt4 installed how can I tell it where my qt4  
> is? Its
> in /opt/qt4-mac/.
>
> Thanks
> Will
>
>
>
> -- 
> This message has been scanned for viruses and
> dangerous content by MailScanner, and is
> believed to be clean.
>
>
> -- 
> ---
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2005.
> http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Mac os X

2007-09-21 Thread William McInnis
Ok so iam working on a full DMG file for mac os x with the BAT and bconsole
working 

I got the bconsole working but when I try to compile BAT it says I need qt4
installed well I have qt4 installed how can I tell it where my qt4 is? Its
in /opt/qt4-mac/.

Thanks
Will



-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] mac os x 10.4.8 and bacula-fd

2007-02-26 Thread Scott Barninger
Hello Darek,

Thanks for writing back, but I have to tell you that there is little I
think I can do with your dmg file?? as I do not have a Mac and know
nothing about building or installing software on that platform. What I
was meaning to say was that if you wished to volunteer your time to
package for that platform we would welcome that. Otherwise I can pass
this on to the users list and perhaps someone can make use of your work.

On Fri, 2007-02-09 at 00:50 +0100, Darek Kramin wrote:
> Hello Scott,
> 
> sorry for late reply,but I'm in the middle of house refurbishment.
> I did compile bacula client for mac os x 10.4.8 (inter core
> duo/universal binary).
> Apparently I'm new in developing for mac-before doing for Sun and Linux.
> However I can help as far as my knowledge exists.
> Hope bacula client 2.0.2 can be a solution for mac backup.
> In monday I'm leaving Poland for couple of weeks, but still will be
> availabel under gmail account.
> Inside dmg package you can find static linked client and console with
> configs and my compilation directives and of course marks of my
> system after uname -as command. is is standard mac book 13 '' with
> 1gb ram.
> 
> regards,
> darek
> 
> 2007/1/27, Scott Barninger <[EMAIL PROTECTED]>:
> > Hello Darek,
> >
> > Thanks for writing. We are always interested in expanding the platform
> > support for bacula. Please let us know if you may be interested in
> > participating. We do not at the moment have a packager for Mac OS X.
> >
> > On Sat, 2007-01-27 at 21:41 +0100, Darek Kramin wrote:
> > > hello,
> > >
> > > please see link: http://www.statusq.org/archives/2005/12/10/853/
> > > about setting client daemon under mac os.
> > > it doesn't need other x11 version to be installed.
> > > hope is better solution and not slowing down the system.
> > > i even didn't recognize 150mb backup over lan while working
> > > with torrents and web pages.
> > >
> > > regards
> > > darek
> >
> >
> 
> 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Mac OS X and readline disabled requirement (deprecated information in the documentation?)

2006-11-25 Thread Erich Prinz
No, the passwords are not required in the config - It just makes life  
easier when setting everything up since it's extremely easy to get  
distracted and put the correct password in the wrong place.  
Otherwise, the config will generate random passwords for the  
director, SD, and FD.

Haven't delved into TLS/encryption so can't help you there. Best to  
start a new thread on that subject when the time comes.

Erich

On Nov 25, 2006, at 12:30 AM, Hydro Meteor wrote:

> Eric,
>
> Thanks a lot for your suggestion for config arguments. I am just  
> scratching the surface now to understand a bit more about running  
> Bacula with TLS / encryption and using x509 certificates. I am  
> wondering, if I do choose to use TLS, do I need to also use  
> passwords? My preference is not to include passwords into the  
> configuration option when first building Bacula.
>
> Cheers,
>
> -H
>
> On 11/24/06, Erich Prinz <[EMAIL PROTECTED]> wrote: For what it  
> is worth, here is the client configure for the client. I
> believe you have to explicitly enable readline support in the conf
> arguments.
>
> ./configure \
> --enable-smartalloc \
> --sbindir=/usr/sbin \
> --with-pid-dir=/var/run \
> --with-subsys-dir=/var/run/subsys \
> --with-mysql=/usr/local/mysql \
> --with-working-dir=/etc/bacula/working \
> --with-dir-password=*** \
> --with-sd-password=*** \
> --with-fd-password= \
> [EMAIL PROTECTED] \
> --with-smtp-host=mymailserver.mydomain.com \
> --with-baseport=9101
>
>
> E
>
> On Nov 24, 2006, at 2:36 AM, Hydro Meteor wrote:
>
> > Hello,
> >
> > According to the documentation for Bacula 1.38.11 (24 July 2006),
> > on page 61 of the PDF document, it says this about Mac OS X client:
> >
> > MacOS X 10.3 is reported to work with the Client only as long as
> > readline support is disabled.
> >
> > This may be true for 10.3, but I'm not so sure its true for 10.4
> > (and Leopard -- 10.5 is just around the corner). The reason I
> > mention this is that the MacPorts (formerly Darwin Ports) Bacula
> > Portfile has configuration arguments as follows (copied and pasted)
> > and there is no explicit disabling of the readline option (although
> > its also not explicitly enabled either):
> >
> > configure.args  --mandir=${prefix}/share/man --with-pid-dir=$
> > {prefix}/var/run \
> > --with-subsys-dir=${prefix}/var/run/
> > subsys \
> > --sysconfdir=${prefix}/etc/${name} \
> > --with-libintl-prefix=${prefix} --
> > with-openssl=${prefix} \
> > --with-libiconv-prefix=${prefix} --
> > with-sqlite3=${prefix} \
> > --without-postgresql --without- 
> mysql \
> > --disable-gnome --disable-wx-
> > console --disable-tray-monitor
> >
> > Any ideas what the reality is for Mac OS X 10.4? Maybe a
> > documenation update is in order?
> >
> > Cheers.
> >  
> --
> > ---
> > Take Surveys. Earn Cash. Influence the Future of IT
> > Join SourceForge.net's Techsay panel and you'll get the chance to
> > share your
> > opinions on IT & business topics through brief surveys - and earn  
> cash
> > http://www.techsay.com/default.php?
> >  
> page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Bacula-users mailing list
> > Bacula-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/bacula-users
>
>


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Mac OS X and readline disabled requirement (deprecated information in the documentation?)

2006-11-24 Thread Erich Prinz
For what it is worth, here is the client configure for the client. I  
believe you have to explicitly enable readline support in the conf  
arguments.

./configure \
--enable-smartalloc \
--sbindir=/usr/sbin \
--with-pid-dir=/var/run \
--with-subsys-dir=/var/run/subsys \
--with-mysql=/usr/local/mysql \
--with-working-dir=/etc/bacula/working \
--with-dir-password=*** \
--with-sd-password=*** \
--with-fd-password= \
[EMAIL PROTECTED] \
--with-smtp-host=mymailserver.mydomain.com \
--with-baseport=9101


E

On Nov 24, 2006, at 2:36 AM, Hydro Meteor wrote:

> Hello,
>
> According to the documentation for Bacula 1.38.11 (24 July 2006),  
> on page 61 of the PDF document, it says this about Mac OS X client:
>
> MacOS X 10.3 is reported to work with the Client only as long as  
> readline support is disabled.
>
> This may be true for 10.3, but I'm not so sure its true for 10.4  
> (and Leopard -- 10.5 is just around the corner). The reason I  
> mention this is that the MacPorts (formerly Darwin Ports) Bacula  
> Portfile has configuration arguments as follows (copied and pasted)  
> and there is no explicit disabling of the readline option (although  
> its also not explicitly enabled either):
>
> configure.args  --mandir=${prefix}/share/man --with-pid-dir=$ 
> {prefix}/var/run \
> --with-subsys-dir=${prefix}/var/run/ 
> subsys \
> --sysconfdir=${prefix}/etc/${name} \
> --with-libintl-prefix=${prefix} -- 
> with-openssl=${prefix} \
> --with-libiconv-prefix=${prefix} -- 
> with-sqlite3=${prefix} \
> --without-postgresql --without-mysql \
> --disable-gnome --disable-wx- 
> console --disable-tray-monitor
>
> Any ideas what the reality is for Mac OS X 10.4? Maybe a  
> documenation update is in order?
>
> Cheers.
> -- 
> ---
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to  
> share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php? 
> page=join.php&p=sourceforge&CID=DEVDEV 
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Mac OS X and readline disabled requirement (deprecated information in the documentation?)

2006-11-24 Thread Hydro Meteor

Hello,

According to the documentation for Bacula 1.38.11 (24 July 2006), on page 61
of the PDF document, it says this about Mac OS X client:

MacOS X 10.3 is reported to work with the Client only as long as readline

support is disabled.



This may be true for 10.3, but I'm not so sure its true for 10.4 (and
Leopard -- 10.5 is just around the corner). The reason I mention this is
that the MacPorts (formerly Darwin Ports) Bacula Portfile has configuration
arguments as follows (copied and pasted) and there is no explicit disabling
of the readline option (although its also not explicitly enabled either):

configure.args  --mandir=${prefix}/share/man

--with-pid-dir=${prefix}/var/run \
--with-subsys-dir=${prefix}/var/run/subsys
\
--sysconfdir=${prefix}/etc/${name} \
--with-libintl-prefix=${prefix}
--with-openssl=${prefix} \
--with-libiconv-prefix=${prefix}
--with-sqlite3=${prefix} \
--without-postgresql --without-mysql \
--disable-gnome --disable-wx-console
--disable-tray-monitor



Any ideas what the reality is for Mac OS X 10.4? Maybe a documenation update
is in order?

Cheers.
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] mac os x backup problem

2006-11-16 Thread Baard Aase
JP skrev:
> Hye,
> 
> I use bacula 1.38.7.
> 
> This is an example of a FileSet I use :
> 
> FileSet {
>Name = "MacOsX"
>Include {
>  Options {
>signature = MD5
>compression = GZIP
>verify = s
>hfsplussupport=yes
>  }
>  File = "/Users/"
>  File = "/Volumes/"
>}
>Exclude {
>  File = "swapfile*"
>  File = "*.mp3"
>  File = "*.cache"
>  File = "/Users/*/.Trash"
>  File = "/Volumes/Stockage"
>}
> }
> 
> When I want to backup a mac o x client, /Volumes/ is not backed up (/ 
> Users/ is all right)
> 
> Why ? What's the problem ?

You need to either specify each volume in /Volumes, or, include onefs=no
in your Options section.

Another error I can see in your fileset is your use of wildcards in the
Exclude section. To exclude wildcards you need to add another Options
section to your Include section like this:

Options {
  wildfile=*.mp3
  wildfile=*.cache
  wilddir=.Trash
  wildfile=swapfile
  exclude=yes
}

see
http://bacula.org/rel-manual/Configuring_Director.html#SECTION000147000


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] mac os x backup problem

2006-11-15 Thread Martin Simmons
> On Mon, 13 Nov 2006 12:58:16 +0100, JP  said:
> 
> Hye,
> 
> I use bacula 1.38.7.
> 
> This is an example of a FileSet I use :
> 
> FileSet {
>Name = "MacOsX"
>Include {
>  Options {
>signature = MD5
>compression = GZIP
>verify = s
>hfsplussupport=yes
>  }
>  File = "/Users/"
>  File = "/Volumes/"
>}
>Exclude {
>  File = "swapfile*"
>  File = "*.mp3"
>  File = "*.cache"
>  File = "/Users/*/.Trash"
>  File = "/Volumes/Stockage"
>}
> }
> 
> When I want to backup a mac o x client, /Volumes/ is not backed up (/ 
> Users/ is all right)
> 
> Why ? What's the problem ?

Did you see any messages from the backup about the directories in /Volumes
(something like "Filesystem change prohibited. Will not descend into
/Volumes/foobar")?

If so, this is controlled by the onefs directive in the Options section.  It
defaults to yes, which means that mounted filesystems are not included.

As someone else mentioned, it is better to specify the directories in /Volumes
that you want to back up, otherwise you'll get all kinds of random things.

__Martin

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] mac os x backup problem

2006-11-15 Thread Erich Prinz
Run Bacula with debug turned on [ bacula start -d100 >bacula- 
log.txt ], then run your job specific to that client.

Stop bacula and restart w/o debug turned on or you'll end up with a  
very large file to wade through.

Two choices here:  1. pico bacula-log.txt in the term session or 2.  
mv bacula-log.txt /Users/*yourusername*/Desktop/bacula-log.txt and  
use TextEdit to view the log file. This will give you the info you  
need to find out why it isn't grabbing the Volumes/

I personally wouldn't attempt to backup anything mounted under the  
Volumes directory as this is where all external file systems get  
mounted on X. iDisk, external USB/FW drives, NSF, SMB/CIFS mounts  
etc. This opens a Pandora's box as Bacula will attempt to backup  
anything mounted under /Volumes at the time the job is run.

Better: If you have a specific device you want to backup, add that  
item explicitly to the list /Volumes/MyFavoriteDeviceToBackup and  
leave the rest alone.

Hope I didn't offend you with the details of what to do in the term  
session - just not sure of your comfort level there.

This is just to get you pointed in the right direction. There are  
others on this list far more astute than I (Hi Landof) when it comes  
to the inner workings of OS X and Bacula and can give greater  
guidance/expertise.

Erich


On Nov 13, 2006, at 5:58 AM, JP wrote:

> Hye,
>
> I use bacula 1.38.7.
>
> This is an example of a FileSet I use :
>
> FileSet {
>Name = "MacOsX"
>Include {
>  Options {
>signature = MD5
>compression = GZIP
>verify = s
>hfsplussupport=yes
>  }
>  File = "/Users/"
>  File = "/Volumes/"
>}
>Exclude {
>  File = "swapfile*"
>  File = "*.mp3"
>  File = "*.cache"
>  File = "/Users/*/.Trash"
>  File = "/Volumes/Stockage"
>}
> }
>
> When I want to backup a mac o x client, /Volumes/ is not backed up (/
> Users/ is all right)
>
> Why ? What's the problem ?
>
> Thanks,
>
> Jean Pylouster
>
> -- 
> ---
> Using Tomcat but need to do more? Need to support web services,  
> security?
> Get stuff done quickly with pre-integrated technology to make your  
> job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache  
> Geronimo
> http://sel.as-us.falkag.net/sel? 
> cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] mac os x backup problem

2006-11-14 Thread JP
Hye,

I use bacula 1.38.7.

This is an example of a FileSet I use :

FileSet {
   Name = "MacOsX"
   Include {
 Options {
   signature = MD5
   compression = GZIP
   verify = s
   hfsplussupport=yes
 }
 File = "/Users/"
 File = "/Volumes/"
   }
   Exclude {
 File = "swapfile*"
 File = "*.mp3"
 File = "*.cache"
 File = "/Users/*/.Trash"
 File = "/Volumes/Stockage"
   }
}

When I want to backup a mac o x client, /Volumes/ is not backed up (/ 
Users/ is all right)

Why ? What's the problem ?

Thanks,

Jean Pylouster

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] MAC OS X

2005-04-20 Thread Eamon Brosnan
Hiya,
The dmg file only includes the installer for the file daemon.
I heard about a fink package but never tried it out. If you are handy  
with
the terminal you can install Xcode which will give you the GCC  
compiler and compile bacula from source. You will probably have to  
use the option --without-readline or something similar(?) to disable  
readline.

On 21/04/2005, at 3:12 AM, Mikel King wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Thanks Josh. Will check this out.
Joshua Kugler wrote:

There is a 1.36.1 dmg on the Sourceforge site:
http://sourceforge.net/project/showfiles.php? 
group_id=50727&package_id=107576

Might save you some time.
j- k-
On Tuesday 19 April 2005 10:22, Mikel King wrote:

I noticed that the site mentions a fink package, but there doesn't
seem to actually be one. Anyone on the list here successfully  
compiled
and running? Any notes pointers etc... would be really appreciated.



- --
Cheers,
Mikel King
Optimized Computer Solutions, INC
39 West Fourteenth Street
Second Floor
New York, NY 10011
http://www.ocsny.com
t:212.727.2100x132
+--+
You may like them. You will see. You may
like them in a tree.
http://www.FreeBSD.org
http://www.OpenOffice.org
http://www.Mozilla.org
+--+
How do you spell cooperation? Pessimists use
each other, but optimists help each other.
Collaboration feeds your spirit, while
competition only stokes your ego. You'll
find the best way to get along.
+--+
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (Darwin)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFCZo1u2pJUHcYXFowRAs3FAJwKcK3/Lepjufu5YMoDvVhTbhiqwwCg5SCl
yswgT/dab/V/EPPkd/kIP1Q=
=467/
-END PGP SIGNATURE-

---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free  
runtime info,
new features, or free trial, at: http://www.businessobjects.com/ 
devxi/728
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] MAC OS X

2005-04-20 Thread Mikel King
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Thanks Josh. Will check this out.

Joshua Kugler wrote:

>There is a 1.36.1 dmg on the Sourceforge site:
>
>http://sourceforge.net/project/showfiles.php?group_id=50727&package_id=107576
>
>Might save you some time.
>
>j- k-
>
>On Tuesday 19 April 2005 10:22, Mikel King wrote:
>
>>I noticed that the site mentions a fink package, but there doesn't
>>seem to actually be one. Anyone on the list here successfully compiled
>>and running? Any notes pointers etc... would be really appreciated.
>
>

- --
Cheers,
Mikel King
Optimized Computer Solutions, INC
39 West Fourteenth Street
Second Floor
New York, NY 10011
http://www.ocsny.com
t:212.727.2100x132

+--+
You may like them. You will see. You may
like them in a tree.
http://www.FreeBSD.org
http://www.OpenOffice.org
http://www.Mozilla.org
+--+
How do you spell cooperation? Pessimists use
each other, but optimists help each other.
Collaboration feeds your spirit, while
competition only stokes your ego. You'll
find the best way to get along.
+--+
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (Darwin)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFCZo1u2pJUHcYXFowRAs3FAJwKcK3/Lepjufu5YMoDvVhTbhiqwwCg5SCl
yswgT/dab/V/EPPkd/kIP1Q=
=467/
-END PGP SIGNATURE-



---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] MAC OS X

2005-04-20 Thread Joshua Kugler
There is a 1.36.1 dmg on the Sourceforge site:

http://sourceforge.net/project/showfiles.php?group_id=50727&package_id=107576

Might save you some time.

j- k-

On Tuesday 19 April 2005 10:22, Mikel King wrote:
> I noticed that the site mentions a fink package, but there doesn't
> seem to actually be one. Anyone on the list here successfully compiled
> and running? Any  notes pointers etc... would be really appreciated.

-- 
Joshua Kugler
CDE System Administrator
http://distance.uaf.edu/


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] MAC OS X

2005-04-19 Thread Arno Lehmann
Hi.
Mikel King wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
I noticed that the site mentions a fink package, but there doesn't
seem to actually be one. Anyone on the list here successfully compiled
and running? Any  notes pointers etc... would be really appreciated.
Yup.
Admittedly, only as as client, but:
- install XCode
- download & unpack bacula
- ./configure --with-lots-of-options
- make
- make install
- modify config files
Works.
Actually, I don't know if the system boot scripts were installed 
automatically, but that was not a problem for me, even though I don't 
usually work on OS X.

So, to make things even shorter: Just Do It.
Arno
- --
Cheers,
Mikel King
Optimized Computer Solutions, INC
39 West Fourteenth Street
Second Floor
New York, NY 10011
http://www.ocsny.com
t:212.727.2100x132
+--+
You may like them. You will see. You may
like them in a tree.
http://www.FreeBSD.org
http://www.OpenOffice.org
http://www.Mozilla.org
+--+
How do you spell cooperation? Pessimists use
each other, but optimists help each other.
Collaboration feeds your spirit, while
competition only stokes your ego. You'll
find the best way to get along.
+--+
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (Darwin)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFCZUx52pJUHcYXFowRAl8DAJ4nQDTVvZOjp9SIRPH3pYKwaSFhOQCg007h
z4NY1azOM90UTlBmKGdE63M=
=UmQm
-END PGP SIGNATURE-

---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users
--
IT-Service Lehmann[EMAIL PROTECTED]
Arno Lehmann  http://www.its-lehmann.de
---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] MAC OS X

2005-04-19 Thread Mikel King
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I noticed that the site mentions a fink package, but there doesn't
seem to actually be one. Anyone on the list here successfully compiled
and running? Any  notes pointers etc... would be really appreciated.

- --
Cheers,
Mikel King
Optimized Computer Solutions, INC
39 West Fourteenth Street
Second Floor
New York, NY 10011
http://www.ocsny.com
t:212.727.2100x132

+--+
You may like them. You will see. You may
like them in a tree.
http://www.FreeBSD.org
http://www.OpenOffice.org
http://www.Mozilla.org
+--+
How do you spell cooperation? Pessimists use
each other, but optimists help each other.
Collaboration feeds your spirit, while
competition only stokes your ego. You'll
find the best way to get along.
+--+
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (Darwin)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFCZUx52pJUHcYXFowRAl8DAJ4nQDTVvZOjp9SIRPH3pYKwaSFhOQCg007h
z4NY1azOM90UTlBmKGdE63M=
=UmQm
-END PGP SIGNATURE-



---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users