How To Install twolame-libs on CentOS 8
Introduction
In this tutorial we learn how to install twolame-libs
on CentOS 8.
What is twolame-libs
TwoLAME is an optimized MPEG Audio Layer 2 encoding library based on tooLAME, which in turn is based heavily on - the ISO dist10 code - improvement to algorithms as part of the LAME project (www.sulaco.org/mp3) This package contains the shared library. twolame-libs 0.3.13 12.el8 x86_64 57 k twolame-0.3.13-12.el8.src.rpm appstream TwoLAME is an optimized MPEG Audio Layer 2 encoding library based on tooLAME http LGPLv2+ TwoLAME is an optimized MPEG Audio Layer 2 encoding library based on tooLAME, which in turn is based heavily on - the ISO dist10 code - improvement to algorithms as part of the LAME project (www.sulaco.org/mp3) This package contains the shared library.
We can use yum
or dnf
to install twolame-libs
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install twolame-libs.
Install twolame-libs on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install twolame-libs
using dnf
by running the following command:
sudo dnf -y install twolame-libs
Install twolame-libs on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install twolame-libs
using yum
by running the following command:
sudo yum -y install twolame-libs
How To Uninstall twolame-libs on CentOS 8
To uninstall only the twolame-libs
package we can use the following command:
sudo dnf remove twolame-libs
twolame-libs Package Contents on CentOS 8
/usr/lib/.build-id
/usr/lib/.build-id/28
/usr/lib/.build-id/28/fb2876f0e878c43a640a45b76df29851410ad4
/usr/lib64/libtwolame.so.0
/usr/lib64/libtwolame.so.0.0.0
/usr/lib/.build-id
/usr/lib/.build-id/91
/usr/lib/.build-id/91/fe82b3b02928b05a2c294a040cfc2f8cdab2b2
/usr/lib/libtwolame.so.0
/usr/lib/libtwolame.so.0.0.0
References
- [twolame-libs website](http://www.twolame.org/ http://www.twolame.org/)
Summary
In this tutorial we learn how to install twolame-libs
on CentOS 8 using yum and dnf.