From f9c3a6b67f7cd78c6107bf4606443dd0d0abc604 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Wed, 8 Aug 2007 12:44:46 +0000 Subject: [PATCH] Updates --- docs/developers/version.tex | 2 +- docs/manual-de/version.tex | 2 +- docs/manual/bimagemgr.tex | 2 +- docs/manual/bugs.tex | 2 +- docs/manual/catmaintenance.tex | 43 +++++++++++++++++++++++++++++- docs/manual/gpl.tex | 22 ++++++++-------- docs/manual/install.tex | 48 ++++++++++++++++++++++------------ docs/manual/version.tex | 2 +- 8 files changed, 90 insertions(+), 33 deletions(-) diff --git a/docs/developers/version.tex b/docs/developers/version.tex index 76a5117b..191b5866 100644 --- a/docs/developers/version.tex +++ b/docs/developers/version.tex @@ -1 +1 @@ -2.1.29 (22 July 2007) +2.1.29 (08 August 2007) diff --git a/docs/manual-de/version.tex b/docs/manual-de/version.tex index 76a5117b..191b5866 100644 --- a/docs/manual-de/version.tex +++ b/docs/manual-de/version.tex @@ -1 +1 @@ -2.1.29 (22 July 2007) +2.1.29 (08 August 2007) diff --git a/docs/manual/bimagemgr.tex b/docs/manual/bimagemgr.tex index 4be2f862..48ca14ed 100644 --- a/docs/manual/bimagemgr.tex +++ b/docs/manual/bimagemgr.tex @@ -40,7 +40,7 @@ \date{\vspace{1.0in}\today \\ This manual documents Bacula version \input{version} \\ ~\vspace{0.2in}\\ - Copyright \copyright 1999-2006, Free Software Foundation Europe e.V. + Copyright \copyright 1999-2007, Free Software Foundation Europe e.V. \\ ~\vspace{0.2in}\\ Permission is granted to copy, distribute and/or modify this document under the terms of the \\ diff --git a/docs/manual/bugs.tex b/docs/manual/bugs.tex index 27fcd897..42df829d 100644 --- a/docs/manual/bugs.tex +++ b/docs/manual/bugs.tex @@ -12,7 +12,7 @@ have a Generally, when a bug is fixed, a patch for the currently released version will be attached to the bug report. -The directory {\bf patches} in the current CVS always contains a list of +The directory {\bf patches} in the current SVN always contains a list of the patches that have been created for the previously released version of Bacula. In addition, the file {\bf patches-version-number} in the {\bf patches} directory contains a summary of each of the patches. diff --git a/docs/manual/catmaintenance.tex b/docs/manual/catmaintenance.tex index 576b4f15..637b3acc 100644 --- a/docs/manual/catmaintenance.tex +++ b/docs/manual/catmaintenance.tex @@ -173,11 +173,52 @@ running dbcheck before (or possibly after) using the MySQL database repair program. It can clean up many of the orphaned record problems, and certain other inconsistencies in the Bacula database. +A typical cause of MySQL database problems is if your partition fills. In +such a case, you will need to create additional space on the partition or +free up some space then repair the database probably using {\bf myisamchk}. +Recently my root partition filled and the MySQL database was corrupted. +Simply running {\bf myisamchk -r} did not fix the problem. However, +the following script did the trick for me: + +\footnotesize +\begin{verbatim} +#!/bin/sh +for i in *.MYD ; do + mv $i x${i} + t=`echo $i | cut -f 1 -d '.' -` + mysql bacula <