How To Install wavpack on CentOS 8
Introduction
In this tutorial we learn how to install wavpack
on CentOS 8.
What is wavpack
WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode. Although the technology is loosely based on previous versions of WavPack, the new version 4 format has been designed from the ground up to offer unparalleled performance and functionality. wavpack 5.1.0 15.el8 x86_64 190 k wavpack-5.1.0-15.el8.src.rpm appstream A completely open audiocodec http BSD WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode. Although the technology is loosely based on previous versions of WavPack, the new version 4 format has been designed from the ground up to offer unparalleled performance and functionality.
We can use yum
or dnf
to install wavpack
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install wavpack.
Install wavpack 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 wavpack
using dnf
by running the following command:
sudo dnf -y install wavpack
Install wavpack 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 wavpack
using yum
by running the following command:
sudo yum -y install wavpack
How To Uninstall wavpack on CentOS 8
To uninstall only the wavpack
package we can use the following command:
sudo dnf remove wavpack
wavpack Package Contents on CentOS 8
/usr/bin/wavpack
/usr/bin/wvgain
/usr/bin/wvtag
/usr/bin/wvunpack
/usr/lib/.build-id
/usr/lib/.build-id/02
/usr/lib/.build-id/02/838d063fc55bc8c4382503c22b3bbcbec91ea1
/usr/lib/.build-id/98
/usr/lib/.build-id/98/a9d60de8c1ffe3a8da9ef8fd9442d239e69490
/usr/lib/.build-id/cc
/usr/lib/.build-id/cc/e0cfda157f849c99118d5693f5bd31ba8adad8
/usr/lib/.build-id/e7
/usr/lib/.build-id/e7/2c592077a28976432367da79e6a048a1eb19b6
/usr/lib/.build-id/e9
/usr/lib/.build-id/e9/af0a75bd7df993107bbf5146ee6bacc2a41790
/usr/lib/libwavpack.so.1
/usr/lib/libwavpack.so.1.2.0
/usr/share/doc/wavpack
/usr/share/doc/wavpack/AUTHORS
/usr/share/doc/wavpack/COPYING
/usr/share/man/man1/wavpack.1.gz
/usr/share/man/man1/wvgain.1.gz
/usr/share/man/man1/wvtag.1.gz
/usr/share/man/man1/wvunpack.1.gz
/usr/bin/wavpack
/usr/bin/wvgain
/usr/bin/wvtag
/usr/bin/wvunpack
/usr/lib/.build-id
/usr/lib/.build-id/03
/usr/lib/.build-id/03/320502ab47b7b30cbde519275b72e59aed6ad9
/usr/lib/.build-id/12
/usr/lib/.build-id/12/09ce89c0fe98b656137e5b8c5cc09c502f5f1c
/usr/lib/.build-id/4b
/usr/lib/.build-id/4b/1ec5f5c1aac81e0097b0b6330b527900f6edb1
/usr/lib/.build-id/9b
/usr/lib/.build-id/9b/0d816d3d2877a2198f326a86c2ccc4287d7213
/usr/lib/.build-id/ad
/usr/lib/.build-id/ad/8b73f686790f4704464c742d31a51e21ca1331
/usr/lib64/libwavpack.so.1
/usr/lib64/libwavpack.so.1.2.0
/usr/share/doc/wavpack
/usr/share/doc/wavpack/AUTHORS
/usr/share/doc/wavpack/COPYING
/usr/share/man/man1/wavpack.1.gz
/usr/share/man/man1/wvgain.1.gz
/usr/share/man/man1/wvtag.1.gz
/usr/share/man/man1/wvunpack.1.gz
References
- [wavpack website](http://www.wavpack.com/ http://www.wavpack.com/)
Summary
In this tutorial we learn how to install wavpack
on CentOS 8 using yum and dnf.