How To Install ripright on CentOS 7
Introduction
In this tutorial we learn how to install ripright on CentOS 7.
What is ripright
RipRight is a minimal CD ripper modeled on autorip. It can run as a daemon and will automatically start ripping any CD found in the drive after which the disc will be ejected. Ripping is always to FLAC lossless audio format with tags taken from the community-maintained MusicBrainz lookup service and cover art from Amazon where possible. If a disc is unknown to MusicBrainz, the CD will be ejected without ripping and can also be optionally rejected if cover art cannot be found. With RipRight, ripping a CD collection is just a matter of feeding your Linux PC each CD in turn and waiting while they are ripped. CDs which are immediately ejected can be checked with the MusicBrainz Picard tool which allows CD identifiers to be uploaded to the website database. Any errors or inaccuracies in the database records can also be edited on the MusicBrainz.
We can use yum or dnf to install ripright on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install ripright.
Install ripright on CentOS 7 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install ripright using yum by running the following command:
sudo yum -y install ripright
Install ripright on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install ripright using dnf by running the following command:
sudo dnf -y install ripright
How To Uninstall ripright on CentOS 7
To uninstall only the ripright package we can use the following command:
sudo dnf remove ripright
References
Summary
In this tutorial we learn how to install ripright on CentOS 7 using yum and dnf.