How To Install libcdaudio on Fedora 34
Introduction
In this tutorial we learn how to install libcdaudio
on Fedora 34.
What is libcdaudio
libcdaudio is a library designed to provide functions to control operation of a CD-ROM when playing audio CDs. It also contains functions for CDDB and CD Index lookup. libcdaudio 0.99.12p2 33.fc34 x86_64 54 k libcdaudio-0.99.12p2-33.fc34.src.rpm fedora Control operation of a CD-ROM when playing audio CDs http LGPLv2+ libcdaudio is a library designed to provide functions to control operation of a CD-ROM when playing audio CDs. It also contains functions for CDDB and CD Index lookup.
We can use yum
or dnf
to install libcdaudio
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libcdaudio.
Install libcdaudio 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 libcdaudio
using dnf
by running the following command:
sudo dnf -y install libcdaudio
Install libcdaudio 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 libcdaudio
using yum
by running the following command:
sudo yum -y install libcdaudio
How To Uninstall libcdaudio on Fedora 34
To uninstall only the libcdaudio
package we can use the following command:
sudo dnf remove libcdaudio
libcdaudio Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/2a
/usr/lib/.build-id/2a/ab1682a402dd4163368a025d6d52c0a8a1c062
/usr/lib/libcdaudio.so.1
/usr/lib/libcdaudio.so.1.0.0
/usr/share/doc/libcdaudio
/usr/share/doc/libcdaudio/NEWS
/usr/share/doc/libcdaudio/README
/usr/share/licenses/libcdaudio
/usr/share/licenses/libcdaudio/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/c2
/usr/lib/.build-id/c2/7f5f64cd737858f0a59b441b843eb137f05604
/usr/lib64/libcdaudio.so.1
/usr/lib64/libcdaudio.so.1.0.0
/usr/share/doc/libcdaudio
/usr/share/doc/libcdaudio/NEWS
/usr/share/doc/libcdaudio/README
/usr/share/licenses/libcdaudio
/usr/share/licenses/libcdaudio/COPYING
References
- [libcdaudio website](http://libcdaudio.sourceforge.net/ http://libcdaudio.sourceforge.net/)
Summary
In this tutorial we learn how to install libcdaudio
on Fedora 34 using yum and dnf.