]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/README
Vacation updates -- see kes06Oct02
[bacula/bacula] / bacula / README
index ba488c6bd779a3ade5fd0828c21ad676648701b5..5c5d9b113cc32dacd6ca6e8734ef9f79c61742b2 100644 (file)
@@ -5,7 +5,7 @@ numbering conventions, but rather one that I started in
 another user was 1.0, each modified source code release then
 gets a new minor release (1.1, ...) as well as a date.  Each
 major change in the software -- e.g.  new tape format will
-have the major release number incremented.
+normally have the major release number incremented.
 
 Your best bet for getting Bacula up and running is to read
 the manual, which can be found in
@@ -15,7 +15,8 @@ the manual, which can be found in
 Barring reading the manual, you might try the
 following:
 
-CFLAGS="-g -Wall" \
+To Configure it:
+
   ./configure \
     --sbindir=$HOME/bacula/bin \
     --sysconfdir=$HOME/bacula/bin \
@@ -26,16 +27,31 @@ CFLAGS="-g -Wall" \
     --with-working-dir=$HOME/bacula/bin/working \
     --with-dump-email=YOUR_EMAIL_ADDRESS \
     --with-job-email=YOUR_EMAIL_ADDRESS \
-    --with-smtp-host=YOUR_SMTP_SERVER_ADDRESS \
-    --with-baseport=9101
+    --with-smtp-host=YOUR_SMTP_SERVER_ADDRESS
 
 
-Build Bacula
+Build Bacula:
 
    make
 
-   There should be no errors.  The most likely source of
-   errors will probably come in the src/stored directory
-   in time.c or dev.c.  There may also be problems in
-   lib/signal.c as I currently pull in all Linux signals,
-   some of which may not be available on your system.
+   If you are doing a port, there should be no errors.  The most
+   likely source of errors will probably come in the src/stored
+   directory in time.c or dev.c.  There may also be problems in
+   lib/signal.c as I currently pull in all Linux signals, some of
+   which may not be available on your system.
+
+To creat the database:
+
+   src/make_bacula_tables
+
+To start it:
+
+   ./startit
+   ./console (or ./gnome-console)
+
+To stop it:
+
+  ./stopit
+
+Well, it is all just a bit more complicated than that,
+but you should have the idea.