How To Install libmysofa on Fedora 34
Introduction
In this tutorial we learn how to install libmysofa
on Fedora 34.
What is libmysofa
This is a simple set of C functions to read AES SOFA files, if they contain HRTFs stored according to the AES69-2015 standard. libmysofa 1.2 4.fc34 x86_64 42 k libmysofa-1.2-4.fc34.src.rpm fedora C functions for reading HRTFs https BSD This is a simple set of C functions to read AES SOFA files, if they contain HRTFs stored according to the AES69-2015 standard.
We can use yum
or dnf
to install libmysofa
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libmysofa.
Install libmysofa 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 libmysofa
using dnf
by running the following command:
sudo dnf -y install libmysofa
Install libmysofa 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 libmysofa
using yum
by running the following command:
sudo yum -y install libmysofa
How To Uninstall libmysofa on Fedora 34
To uninstall only the libmysofa
package we can use the following command:
sudo dnf remove libmysofa
libmysofa Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/0e
/usr/lib/.build-id/0e/113e0d79410d9cf0a856520254e34dd0daf5bd
/usr/lib/libmysofa.so.1
/usr/lib/libmysofa.so.1.1.0
/usr/share/doc/libmysofa
/usr/share/doc/libmysofa/README.md
/usr/share/licenses/libmysofa
/usr/share/licenses/libmysofa/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/ef
/usr/lib/.build-id/ef/1c69c940fdb2883aa49c4bc9714853706216de
/usr/lib64/libmysofa.so.1
/usr/lib64/libmysofa.so.1.1.0
/usr/share/doc/libmysofa
/usr/share/doc/libmysofa/README.md
/usr/share/licenses/libmysofa
/usr/share/licenses/libmysofa/LICENSE
References
- [libmysofa website](https://github.com/hoene/libmysofa https://github.com/hoene/libmysofa)
Summary
In this tutorial we learn how to install libmysofa
on Fedora 34 using yum and dnf.