How To Install icedax on AlmaLinux 8
Introduction
In this tutorial we learn how to install icedax
on AlmaLinux 8.
What is icedax
Icedax is a sampling utility for CD-ROM drives that are capable of providing a CD’s audio data in digital form to your host. Audio data read from the CD can be saved as .wav or .sun format sound files. Recording formats include stereo/mono, 8/12/16 bits and different rates. Icedax can also be used as a CD player.
We can use yum
or dnf
to install icedax
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install icedax.
Install icedax on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install icedax
using dnf
by running the following command:
sudo dnf -y install icedax
Install icedax on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install icedax
using yum
by running the following command:
sudo yum -y install icedax
How To Uninstall icedax on AlmaLinux 8
To uninstall only the icedax
package we can use the following command:
sudo dnf remove icedax
References
Summary
In this tutorial we learn how to install icedax
on AlmaLinux 8 using yum and dnf.