Bacula Enterprise Debian/Ubuntu binary installation In general, you should get the binary packages from your download area on www.baculasystems.com. You can either download what you need or setup a repository pointing to the download area that will allow you to use your installer program such as apt to ensure that all the dependencies a met. Installing using apt: --------------------- In order to use the Bacula Systems apt repository, you need to install the HTTPS backend for APT. apt-get install apt-transport-https Then, you need to download and install the gpg signature that validates packages wget https://www.baculasystems.com/dl//BaculaSystems-Public-Signature-08-2017.asc apt-key add BaculaSystems-Public-Signature-08-2017.asc Add to your /etc/apt/sources.list file the following entries: # Bacula Enterprise deb https://www.baculasystems.com/dl//debs/bin/11.0.6/bullseye-64/ bullseye main # Bacula Enterprise Bweb Management Suite (if subscribed) deb https://www.baculasystems.com/dl//debs/bweb/11.0.6/bullseye-64/ bullseye bweb If you have any warning on Ubuntu Precise about i386 entries missing, you can ignore them or use the following configuration in the sources.list file: deb [arch=amd64] https://www.baculasystems.com/dl//debs/bin/11.0.6/precise-64/ precise main Also please ensure that you adapt the Bacula version and the architecture (platform) to correspond to your system. debian 9 | stretch debian 8 | jessie debian 7 | wheezy debian 6 | squeeze debian 5 | lenny ubuntu 16.04 | xenial ubuntu 14.04 | trusty ubuntu 12.04 | precise ubuntu 10.04 | lucid Once done, you can update the repository list with the following command. apt-get update If you have not previously install the database server, do so with: apt-get install dbconfig-common postgresql Then install the Bacula with PostgreSQL driver with: apt-get install bacula-enterprise-postgresql Or if you want to use the MySQL catalog: apt-get install dbconfig-common mysql-server apt-get install bacula-enterprise-mysql If you want to install Bat, you will also want to do: apt-get install bacula-enterprise-bat Installing by hand: ------------------- Assuming you will download the binaries to your machine, first, transfer the binary packages you need to your Debian or Ubuntu machine. For example: bacula-enterprise-client_11.0.6-1_amd64.deb bacula-enterprise-common_11.0.6-1_amd64.deb bacula-enterprise-console-qt_11.0.6-1_amd64.deb bacula-enterprise-console_11.0.6-1_amd64.deb and either bacula-enterprise-mysql_11.0.6-1_amd64.deb or bacula-enterprise-postgresql_11.0.6-1_amd64.deb In addition, if you have any plugins, please download the debs for them. To install generally if you have not previously installed a Bacula Enterprise binary, you will want to save your old configuration files somewhere and then remove the old packages with: dpkg -r ... If you have previously used a Bacula Enterprise binary, you do not need to remove the packages, you can simply install or upgrade the new ones with: dpkg -i bacula-enterprise-client_11.0.6-1_amd64.deb \ bacula-enterprise-common_11.0.6-1_amd64.deb \ bacula-enterprise-console_11.0.6-1_amd64.deb \ bacula-enterprise-postgresql_11.0.6-1_amd64.deb That is you can put them all on one line or multiple lines if terminated with \ (and no space after the \). If some dependencies are missing, you can install them automatically using: apt-get -f install