Introduction
In this tutorial we learn how to install cdrdao
on CentOS 8.
What is cdrdao
Cdrdao records audio CD-Rs in disk-at-once (DAO) mode, based on a textual description of the CD contents. Recording in DAO mode writes the complete disc (lead-in, one or more tracks, and lead-out) in a single step. DAO allows full control over the length and the contents of pre-gaps, the pause areas between tracks.
We can use yum
or dnf
to install cdrdao
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install cdrdao.
Install cdrdao 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 cdrdao
using dnf
by running the following command:
sudo dnf -y install cdrdao
Install cdrdao 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 cdrdao
using yum
by running the following command:
sudo yum -y install cdrdao
How To Uninstall cdrdao on CentOS 8
To uninstall only the cdrdao
package we can use the following command:
sudo dnf remove cdrdao
cdrdao Package Contents on CentOS 8
/usr/bin/cdrdao
/usr/bin/cue2toc
/usr/bin/toc2cddb
/usr/bin/toc2cue
/usr/bin/toc2mp3
/usr/lib/.build-id
/usr/lib/.build-id/2d
/usr/lib/.build-id/2d/240855cb55e7821e94e39971e45a02edddddf2
/usr/lib/.build-id/43
/usr/lib/.build-id/43/3725fa7cded96d6af99e4e047630c9279558ee
/usr/lib/.build-id/48
/usr/lib/.build-id/48/e5c5eb0fc7c03de7b7ad22fa9ea3c0d35cadf8
/usr/lib/.build-id/95
/usr/lib/.build-id/95/20bee66c7d61be160681a00ac712334e392ad3
/usr/lib/.build-id/ba
/usr/lib/.build-id/ba/1d548667df7cb8160fdf40916ed8a632c80076
/usr/share/cdrdao
/usr/share/cdrdao/drivers
/usr/share/doc/cdrdao
/usr/share/doc/cdrdao/AUTHORS
/usr/share/doc/cdrdao/COPYING
/usr/share/doc/cdrdao/CREDITS
/usr/share/doc/cdrdao/ChangeLog
/usr/share/doc/cdrdao/README
/usr/share/man/man1/cdrdao.1.gz
/usr/share/man/man1/cue2toc.1.gz
/usr/share/man/man1/toc2cddb.1.gz
/usr/share/man/man1/toc2cue.1.gz
References
Summary
In this tutorial we learn how to install cdrdao
on CentOS 8 using yum and dnf.