How To Install libldac on Fedora 34
Introduction
In this tutorial we learn how to install libldac
on Fedora 34.
What is libldac
LDAC is an audio coding technology developed by Sony. It enables the transmission of High-Resolution Audio content, even over a Bluetooth connection. libldac 2.0.2.3 8.fc34 x86_64 41 k libldac-2.0.2.3-8.fc34.src.rpm fedora A lossy audio codec for Bluetooth connections https ASL 2.0 LDAC is an audio coding technology developed by Sony. It enables the transmission of High-Resolution Audio content, even over a Bluetooth connection.
We can use yum
or dnf
to install libldac
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libldac.
Install libldac 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 libldac
using dnf
by running the following command:
sudo dnf -y install libldac
Install libldac 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 libldac
using yum
by running the following command:
sudo yum -y install libldac
How To Uninstall libldac on Fedora 34
To uninstall only the libldac
package we can use the following command:
sudo dnf remove libldac
libldac Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/2d
/usr/lib/.build-id/2d/c41aa2aa5624f542a8b7d9b48535f866c4a02b
/usr/lib/.build-id/58
/usr/lib/.build-id/58/10b01b286e925b910f1d07e99e4a7257d40429
/usr/lib/libldacBT_abr.so
/usr/lib/libldacBT_abr.so.2
/usr/lib/libldacBT_abr.so.2.0.2.3
/usr/lib/libldacBT_enc.so
/usr/lib/libldacBT_enc.so.2
/usr/lib/libldacBT_enc.so.2.0.2.3
/usr/share/licenses/libldac
/usr/share/licenses/libldac/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/52
/usr/lib/.build-id/52/522cc4088f83d8802290a906dbf239716767b3
/usr/lib/.build-id/82
/usr/lib/.build-id/82/1489a62f6e007a863b7dae6283f389eac8cb4c
/usr/lib64/libldacBT_abr.so
/usr/lib64/libldacBT_abr.so.2
/usr/lib64/libldacBT_abr.so.2.0.2.3
/usr/lib64/libldacBT_enc.so
/usr/lib64/libldacBT_enc.so.2
/usr/lib64/libldacBT_enc.so.2.0.2.3
/usr/share/licenses/libldac
/usr/share/licenses/libldac/LICENSE
References
- [libldac website](https://github.com/EHfive/ldacBT https://github.com/EHfive/ldacBT)
Summary
In this tutorial we learn how to install libldac
on Fedora 34 using yum and dnf.