How To Install libcddb on Fedora 34
Introduction
In this tutorial we learn how to install libcddb
on Fedora 34.
What is libcddb
Libcddb is a library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (e.g http libcddb 1.3.2 34.fc34 x86_64 74 k libcddb-1.3.2-34.fc34.src.rpm fedora Library (C API) for accessing CDDB servers http LGPLv2+ Libcddb is a library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (e.g http
We can use yum
or dnf
to install libcddb
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libcddb.
Install libcddb on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libcddb
using dnf
by running the following command:
sudo dnf -y install libcddb
Install libcddb on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libcddb
using yum
by running the following command:
sudo yum -y install libcddb
How To Uninstall libcddb on Fedora 34
To uninstall only the libcddb
package we can use the following command:
sudo dnf remove libcddb
libcddb Package Contents on Fedora 34
/usr/bin/cddb_query
/usr/lib/.build-id
/usr/lib/.build-id/0a
/usr/lib/.build-id/0a/5eaf51a0f3f30bdbf127c70a32f86af25b7fdf
/usr/lib/.build-id/22
/usr/lib/.build-id/22/0ebb891868fba997baa564667e914b175e374a
/usr/lib64/libcddb.so.2
/usr/lib64/libcddb.so.2.2.3
/usr/share/doc/libcddb
/usr/share/doc/libcddb/AUTHORS
/usr/share/doc/libcddb/ChangeLog
/usr/share/doc/libcddb/NEWS
/usr/share/doc/libcddb/README
/usr/share/doc/libcddb/THANKS
/usr/share/doc/libcddb/TODO
/usr/share/licenses/libcddb
/usr/share/licenses/libcddb/COPYING
/usr/bin/cddb_query
/usr/lib/.build-id
/usr/lib/.build-id/9e
/usr/lib/.build-id/9e/870416fd552207e19b5c3856ab7bcf08b64d67
/usr/lib/.build-id/dd
/usr/lib/.build-id/dd/5cbff78e5fe6c0eebecd3e85b8ad660c74c166
/usr/lib/libcddb.so.2
/usr/lib/libcddb.so.2.2.3
/usr/share/doc/libcddb
/usr/share/doc/libcddb/AUTHORS
/usr/share/doc/libcddb/ChangeLog
/usr/share/doc/libcddb/NEWS
/usr/share/doc/libcddb/README
/usr/share/doc/libcddb/THANKS
/usr/share/doc/libcddb/TODO
/usr/share/licenses/libcddb
/usr/share/licenses/libcddb/COPYING
References
- [libcddb website](http://libcddb.sourceforge.net/ http://libcddb.sourceforge.net/)
Summary
In this tutorial we learn how to install libcddb
on Fedora 34 using yum and dnf.