How To Install bacula-storage on Rocky Linux 8
Introduction
In this tutorial we learn how to install bacula-storage
on Rocky Linux 8.
What is bacula-storage
Bacula is a set of programs that allow you to manage the backup, recovery, and verification of computer data across a network of different computers. It is based on a client/server architecture. This package contains the storage daemon, the daemon responsible for writing the data received from the clients onto tape drives or other mass storage devices.
We can use yum
or dnf
to install bacula-storage
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install bacula-storage.
Install bacula-storage on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install bacula-storage
using dnf
by running the following command:
sudo dnf -y install bacula-storage
Install bacula-storage on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install bacula-storage
using yum
by running the following command:
sudo yum -y install bacula-storage
How To Uninstall bacula-storage on Rocky Linux 8
To uninstall only the bacula-storage
package we can use the following command:
sudo dnf remove bacula-storage
bacula-storage Package Contents on Rocky Linux 8
/etc/bacula/bacula-sd.conf
/etc/sysconfig/bacula-sd
/usr/lib/.build-id
/usr/lib/.build-id/0b
/usr/lib/.build-id/0b/1d3522e806dcd64f09af679fe34f82491eb5cb
/usr/lib/.build-id/0b/b5219dc6cfb30066ddea13534a2f838d47e319
/usr/lib/.build-id/1a
/usr/lib/.build-id/1a/7c5c1cee010ebf206cc0757193b1e406a939bb
/usr/lib/.build-id/32
/usr/lib/.build-id/32/eecaf165dd374817a60ac33998bada9544cac3
/usr/lib/.build-id/42
/usr/lib/.build-id/42/5a8967997f40e2cda5a25f7cdb18af3e86e8d2
/usr/lib/.build-id/46
/usr/lib/.build-id/46/d8dd01eff4dcfe68819efb9864d9798248e4ba
/usr/lib/.build-id/79
/usr/lib/.build-id/79/27e1d59e98275c1d192f8b3feb3d53e02fe124
/usr/lib/systemd/system/bacula-sd.service
/usr/libexec/bacula/disk-changer
/usr/libexec/bacula/mtx-changer
/usr/libexec/bacula/mtx-changer.conf
/usr/libexec/bacula/tapealert
/usr/sbin/bacula-sd
/usr/sbin/bcopy
/usr/sbin/bextract
/usr/sbin/bls
/usr/sbin/bscan
/usr/sbin/bsdjson
/usr/sbin/btape
/usr/share/man/man8/bacula-sd.8.gz
/usr/share/man/man8/bcopy.8.gz
/usr/share/man/man8/bextract.8.gz
/usr/share/man/man8/bls.8.gz
/usr/share/man/man8/bscan.8.gz
/usr/share/man/man8/btape.8.gz
References
Summary
In this tutorial we learn how to install bacula-storage
on Rocky Linux 8 using yum and dnf.