How To Install bacula-libs on Rocky Linux 8

In this tutorial we learn how to install bacula-libs on Rocky Linux 8. bacula-libs is Bacula libraries

Introduction

In this tutorial we learn how to install bacula-libs on Rocky Linux 8.

What is bacula-libs

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 basic Bacula libraries, which are used by all Bacula programs.

We can use yum or dnf to install bacula-libs on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install bacula-libs.

Install bacula-libs 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-libs using dnf by running the following command:

sudo dnf -y install bacula-libs

Install bacula-libs 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-libs using yum by running the following command:

sudo yum -y install bacula-libs

How To Uninstall bacula-libs on Rocky Linux 8

To uninstall only the bacula-libs package we can use the following command:

sudo dnf remove bacula-libs

bacula-libs Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/5f
/usr/lib/.build-id/5f/9981adbce82c2c7ac79d7e4403aa887a0a2372
/usr/lib/.build-id/a0
/usr/lib/.build-id/a0/22fac33d7c78a8c54ef5a0577eca5e7f274d14
/usr/lib/.build-id/df
/usr/lib/.build-id/df/c19de3563defcb56b7c71b8a8532fcb6d807b2
/usr/lib/.build-id/fb
/usr/lib/.build-id/fb/5fdd22395422bbfa6606e5d47967a5d2ac6778
/usr/lib64/libbac-9.0.6.so
/usr/lib64/libbaccfg-9.0.6.so
/usr/lib64/libbacfind-9.0.6.so
/usr/lib64/libbacsd-9.0.6.so
/usr/share/doc/bacula-libs
/usr/share/doc/bacula-libs/AUTHORS
/usr/share/doc/bacula-libs/ChangeLog
/usr/share/doc/bacula-libs/LICENSE-FAQ
/usr/share/doc/bacula-libs/LICENSE-FOSS
/usr/share/doc/bacula-libs/ReleaseNotes
/usr/share/doc/bacula-libs/SUPPORT
/usr/share/licenses/bacula-libs
/usr/share/licenses/bacula-libs/LICENSE

References

Summary

In this tutorial we learn how to install bacula-libs on Rocky Linux 8 using yum and dnf.