How To Install audiofile on Rocky Linux 8
Introduction
In this tutorial we learn how to install audiofile
on Rocky Linux 8.
What is audiofile
The Audio File library is an implementation of the Audio File Library from SGI, which provides an API for accessing audio file formats like AIFF/AIFF-C, WAVE, and NeXT/Sun .snd/.au files. This library is used by the EsounD daemon. Install audiofile if you are installing EsounD or you need an API for any of the sound file formats it can handle.
We can use yum
or dnf
to install audiofile
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install audiofile.
Install audiofile 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 audiofile
using dnf
by running the following command:
sudo dnf -y install audiofile
Install audiofile 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 audiofile
using yum
by running the following command:
sudo yum -y install audiofile
How To Uninstall audiofile on Rocky Linux 8
To uninstall only the audiofile
package we can use the following command:
sudo dnf remove audiofile
audiofile Package Contents on Rocky Linux 8
/usr/bin/sfconvert
/usr/bin/sfinfo
/usr/lib/.build-id
/usr/lib/.build-id/78
/usr/lib/.build-id/78/01163a6007a251e0cc8ffd62394a06943724dc
/usr/lib/.build-id/94
/usr/lib/.build-id/94/e63a0bbb11552d69611f7eb0b589bf49a1b7e5
/usr/lib/.build-id/a4
/usr/lib/.build-id/a4/c2fc327110d78f12f8892df4c9fad677d8ef5a
/usr/lib64/libaudiofile.so.1
/usr/lib64/libaudiofile.so.1.0.0
/usr/share/doc/audiofile
/usr/share/doc/audiofile/ACKNOWLEDGEMENTS
/usr/share/doc/audiofile/AUTHORS
/usr/share/doc/audiofile/NEWS
/usr/share/doc/audiofile/NOTES
/usr/share/doc/audiofile/README
/usr/share/doc/audiofile/TODO
/usr/share/licenses/audiofile
/usr/share/licenses/audiofile/COPYING
/usr/share/licenses/audiofile/COPYING.GPL
/usr/share/man/man1/sfconvert.1.gz
/usr/share/man/man1/sfinfo.1.gz
References
Summary
In this tutorial we learn how to install audiofile
on Rocky Linux 8 using yum and dnf.