]> git.sur5r.net Git - bacula/bacula/blob - bacula/README
Update configure + add x bit for console
[bacula/bacula] / bacula / README
1
2 As you will note, I don't follow the standard GNU release
3 numbering conventions, but rather one that I started in
4 1970.  My internal releases were 0.nn, the first release to
5 another user was 1.0, each modified source code release then
6 gets a new minor release (1.1, ...) as well as a date.  Each
7 major change in the software -- e.g.  new tape format will
8 have the major release number incremented.
9
10 Your best bet for getting Bacula up and running is to read
11 the manual, which can be found in
12 <bacula-main-directory>/doc/html-manual, or in
13 <bacula-main-directory>/doc/bacula.pdf.
14
15 Barring reading the manual, you might try the
16 following:
17
18 CFLAGS="-g -Wall" \
19   ./configure \
20     --sbindir=$HOME/bacula/bin \
21     --sysconfdir=$HOME/bacula/bin \
22     --with-pid-dir=$HOME/bacula/bin \
23     --with-subsys-dir=$HOME/bacula/bin \
24     --enable-gnome \
25     --with-mysql=$HOME/mysql \
26     --with-working-dir=$HOME/bacula/bin/working \
27     --with-dump-email=YOUR_EMAIL_ADDRESS \
28     --with-job-email=YOUR_EMAIL_ADDRESS \
29     --with-smtp-host=YOUR_SMTP_SERVER_ADDRESS \
30     --with-baseport=9101
31
32
33 Build Bacula
34
35    make
36
37    There should be no errors.  The most likely source of
38    errors will probably come in the src/stored directory
39    in time.c or dev.c.  There may also be problems in
40    lib/signal.c as I currently pull in all Linux signals,
41    some of which may not be available on your system.