How To Install bacula-libs-sql on Rocky Linux 8
Introduction
In this tutorial we learn how to install bacula-libs-sql
on Rocky Linux 8.
What is bacula-libs-sql
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 SQL Bacula libraries, which are used by Director and Storage daemons. You have to select your preferred catalog library through the alternatives system.
We can use yum
or dnf
to install bacula-libs-sql
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install bacula-libs-sql.
Install bacula-libs-sql 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-sql
using dnf
by running the following command:
sudo dnf -y install bacula-libs-sql
Install bacula-libs-sql 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-sql
using yum
by running the following command:
sudo yum -y install bacula-libs-sql
How To Uninstall bacula-libs-sql on Rocky Linux 8
To uninstall only the bacula-libs-sql
package we can use the following command:
sudo dnf remove bacula-libs-sql
bacula-libs-sql Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/0d
/usr/lib/.build-id/0d/c9ec76bdce02f2a1fe1d3d9b872501010df272
/usr/lib/.build-id/2a
/usr/lib/.build-id/2a/013000b65bba1f10173def03eea392b2ea7f83
/usr/lib/.build-id/ab
/usr/lib/.build-id/ab/fb6359bb6d485f684f002befec24ae37ce8359
/usr/lib/.build-id/f3
/usr/lib/.build-id/f3/2eed4f579152acadde97e1c5a3b6852c39bfac
/usr/lib64/libbaccats-mysql-9.0.6.so
/usr/lib64/libbaccats-mysql.so
/usr/lib64/libbaccats-postgresql-9.0.6.so
/usr/lib64/libbaccats-postgresql.so
/usr/lib64/libbaccats-sqlite3-9.0.6.so
/usr/lib64/libbaccats-sqlite3.so
/usr/lib64/libbacsql-9.0.6.so
References
Summary
In this tutorial we learn how to install bacula-libs-sql
on Rocky Linux 8 using yum and dnf.