From: Kern Sibbald Date: Sat, 2 Apr 2011 12:49:41 +0000 (+0200) Subject: Split Community and Enterprise new features X-Git-Tag: Release-5.2.1~33 X-Git-Url: https://git.sur5r.net/?p=bacula%2Fdocs;a=commitdiff_plain;h=343e5d8d22dd378f05e04f2ec50efe5f95760618 Split Community and Enterprise new features --- diff --git a/docs/manuals/en/main/main.tex b/docs/manuals/en/main/main.tex index 82959fd4..804881ed 100644 --- a/docs/manuals/en/main/main.tex +++ b/docs/manuals/en/main/main.tex @@ -50,6 +50,7 @@ \markboth{Bacula Version \version}{Bacula Version \version} \pagenumbering{arabic} \include{general} +\include{newbsfeatures} \include{newfeatures} \include{state} \include{requirements} diff --git a/docs/manuals/en/main/newbsfeatures.tex b/docs/manuals/en/main/newbsfeatures.tex new file mode 100644 index 00000000..8ad0309c --- /dev/null +++ b/docs/manuals/en/main/newbsfeatures.tex @@ -0,0 +1,113 @@ +\chapter{Enterprise Bacula New Features} +This chapter presents the new features that will be added to the +current Enterprise version of Bacula that is under development. This version will be +released at some later date, probably near the end of June 2011. These +features are available only with a Bacula Systems subscription. + +In addition to the features in this chapter, the Enterprise version +will include the Community features described in the Community new Features +chapter. + +\section{Support for MSSQL Block Level Backup} + +This project was funded by Bacula Systems and is available with the Bacula +Enterprise Edition. + +\section{Support for NDMP protocol} + +The new \texttt{ndmp} Plugin is able to backup a NAS through NDMP protocol +using \textbf{Filer to server} approach, where the Filer is backing up across +the LAN to your Bacula server. + +Accurate option should be turned on in the Job resource. +\begin{verbatim} +Job { + Accurate = yes + FileSet = NDMPFS + ... +} + +FileSet { + Name = NDMPFS + ... + Include { + Plugin = "ndmp:host=nasbox user=root pass=root file=/vol/vol1" + } +} +\end{verbatim} + +This project was funded by Bacula Systems and is available with the Bacula +Enterprise Edition. + +\section{Incremental/Differential Block Level Difference Backup} + +The new \texttt{delta} Plugin is able to compute and apply signature-based file +differences. It can be used to backup only changes in a big binary file like +Outlook PST, VirtualBox/VmWare images or database files. + +It supports both Incremental and Differential backups and stores signatures +database in the File Daemon working directory. This plugin is available on all +plateform including Windows 32 and 64bit. + +Accurate option should be turned on in the Job resource. +\begin{verbatim} +Job { + Accurate = yes + FileSet = DeltaFS + ... +} + +FileSet { + Name = DeltaFS + ... + Include { + Plugin = "delta:/home/eric/.VirtualBox/HardDisks/lenny-i386.vdi" + } +} +\end{verbatim} + +Note: the core code features to implement this functionality are included +in the Community plugin interface as will as the core Community code. + +This project was funded by Bacula Systems and is available with the Bacula +Enterprise Edition. + +\section{Include All Windows Drives in FileSet} + +The \texttt{alldrives} Windows Plugin allows you to include all local drives +with a simple directive. This plugin is available for Windows 64 and 32 bit. + +\begin{verbatim} +FileSet { + Name = EverythingFS + ... + Include { + Plugin = "alldrives" + } +} +\end{verbatim} + +You exclude some specific drives with the \texttt{exclude} option. + +\begin{verbatim} +FileSet { + Name = EverythingFS + ... + Include { + Plugin = "alldrives: exclude=D,E" + } +} +\end{verbatim} + + +This project was funded by Bacula Systems and is available with the Bacula +Enterprise Edition. + + +\section{ACL/Extended Attributes} + +We added support for NFSv4 ACLs on FreeBSD 8.1 and IRIX extended attributes. + +This project was funded by Marco van Wieringen. + + diff --git a/docs/manuals/en/main/newfeatures.tex b/docs/manuals/en/main/newfeatures.tex index 47303e0e..95474190 100644 --- a/docs/manuals/en/main/newfeatures.tex +++ b/docs/manuals/en/main/newfeatures.tex @@ -1,8 +1,12 @@ -\chapter{New Features in 5.1.x} +\chapter{Community Bacula New Features in 5.1.x} This chapter presents the new features that have been added to the -current version of Bacula that is under development. This version will be +current Community version of Bacula that is under development. This version will be released at some later date, probably near the end of April 2011. +There are additional features (plugins) available in the Enterprise version +that are described in another chapter. A subscription to Bacula Systems +is required for the Enterprise version. + \section{Restart Incomplete Job} @@ -117,97 +121,6 @@ The \texttt{limit} parameter is in KB/s. This project was funded by Bacula Systems and is available in the Enterprise Edition and the Community Edition. -\section{Support for MSSQL Block Level Backup} - -This project was funded by Bacula Systems and is available with the Bacula -Enterprise Edition. - -\section{Support for NDMP protocol} - -The new \texttt{ndmp} Plugin is able to backup a NAS through NDMP protocol -using \textbf{Filer to server} approach, where the Filer is backing up across -the LAN to your Bacula server. - -Accurate option should be turned on in the Job resource. -\begin{verbatim} -Job { - Accurate = yes - FileSet = NDMPFS - ... -} - -FileSet { - Name = NDMPFS - ... - Include { - Plugin = "ndmp:host=nasbox user=root pass=root file=/vol/vol1" - } -} -\end{verbatim} - -This project was funded by Bacula Systems and is available with the Bacula -Enterprise Edition. - -\section{Incremental/Differential Block Level Difference Backup} - -The new \texttt{delta} Plugin is able to compute and apply signature-based file -differences. It can be used to backup only changes in a big binary file like -Outlook PST, VirtualBox/VmWare images or database files. - -It supports both Incremental and Differential backups and stores signatures -database in the File Daemon working directory. This plugin is available on all -plateform including Windows 32 and 64bit. - -Accurate option should be turned on in the Job resource. -\begin{verbatim} -Job { - Accurate = yes - FileSet = DeltaFS - ... -} - -FileSet { - Name = DeltaFS - ... - Include { - Plugin = "delta:/home/eric/.VirtualBox/HardDisks/lenny-i386.vdi" - } -} -\end{verbatim} - -This project was funded by Bacula Systems and is available with the Bacula -Enterprise Edition. - -\section{Include All Windows Drives in FileSet} - -The \texttt{alldrives} Windows Plugin allows you to include all local drives -with a simple directive. This plugin is available for Windows 64 and 32 bit. - -\begin{verbatim} -FileSet { - Name = EverythingFS - ... - Include { - Plugin = "alldrives" - } -} -\end{verbatim} - -You exclude some specific drives with the \texttt{exclude} option. - -\begin{verbatim} -FileSet { - Name = EverythingFS - ... - Include { - Plugin = "alldrives: exclude=D,E" - } -} -\end{verbatim} - - -This project was funded by Bacula Systems and is available with the Bacula -Enterprise Edition. \section{SQL Catalog Enhancements}