Linux: Plugin Installation on Debian and Ubuntu based distributions
Prerequisites
Before you begin, ensure that your system is prepared with the necessary tools and permissions. You’ll need sudo privileges to execute installation commands. If you have not already, see how to import a repository key in the first steps.
Steps
You’ll need sudo privileges to execute installation commands.
Run the following script to update your repository file:
echo -e "# Bacula Enterprise @@plugin-name@@\nTypes: deb\nURIs: https://www.baculasystems.com/dl/@@customer-id@@/debs/@@plugin-name@@/@@bee-version@@/$(lsb_release -cs)-64\nSuites: $(lsb_release -cs)\nComponents: @@plugin-name@@\nSigned-By: /etc/apt/trusted.gpg.d/BaculaSystems-Public-Signature-08-2017.asc\n" | sudo tee -a /etc/apt/sources.list.d/bacula-enterprise.sources > /dev/null
Replace @@customer-id@@, @@bee-version@@, and @@plugin-name@@ with the name of the plugin you wish to install.
Then update the package cache and install the plugin:
sudo apt-get update
sudo apt-get install @@bacula-enterprise-package-id@@
Be sure to replace @@bacula-enterprise-package-id@@ with the package name. See the full list here.
Manual installation of the packages, can be done after downloading the package files from the Bacula Systems provided download area, and then using the package manager to install.
Example
Install LDAP plugin on Debian 12 (bookworm) with Bacula Enterprise Edition version 18.0.7.
echo -e "# Bacula Enterprise LDAP\nTypes: deb\nURIs: https://www.baculasystems.com/dl/customer-123456/debs/ldap/18.0.7/bookworm-64\nSuites: bookworm\nComponents: ldap\nSigned-By: /etc/apt/trusted.gpg.d/BaculaSystems-Public-Signature-08-2017.asc\n" | sudo tee -a /etc/apt/sources.list.d/bacula-enterprise.sources > /dev/null
sudo apt-get update
sudo apt-get install bacula-enterprise-ldap-plugin
See also
Next articles:
Go back to: Install Bacula Enterprise Plugins.