How To Install ilbc on Rocky Linux 8
Introduction
In this tutorial we learn how to install ilbc
on Rocky Linux 8.
What is ilbc
iLBC (internet Low Bitrate Codec) is a FREE speech codec suitable for robust voice communication over IP. The codec is designed for narrow band speech and results in a payload bit rate of 13.33 kbit/s with an encoding frame length of 30 ms and 15.20 kbps with an encoding length of 20 ms. The iLBC codec enables graceful speech quality degradation in the case of lost frames, which occurs in connection with lost or delayed IP packets.
We can use yum
or dnf
to install ilbc
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install ilbc.
Install ilbc 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 ilbc
using dnf
by running the following command:
sudo dnf -y install ilbc
Install ilbc 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 ilbc
using yum
by running the following command:
sudo yum -y install ilbc
How To Uninstall ilbc on Rocky Linux 8
To uninstall only the ilbc
package we can use the following command:
sudo dnf remove ilbc
ilbc Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/e3
/usr/lib/.build-id/e3/e6021dd6255a66e5ca0ca046d016a3e21d9612
/usr/lib64/libilbc.so.0
/usr/lib64/libilbc.so.0.0.1
/usr/share/doc/ilbc
/usr/share/doc/ilbc/README
/usr/share/licenses/ilbc
/usr/share/licenses/ilbc/COPYING
References
Summary
In this tutorial we learn how to install ilbc
on Rocky Linux 8 using yum and dnf.