How To Install cdrdao on Fedora 34

cdrdao is Writes audio CD-Rs in disk-at-once (DAO) mode

Introduction

In this tutorial we learn how to install cdrdao on Fedora 34.

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 Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install cdrdao.

Install cdrdao on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 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 Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 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 Fedora 34

To uninstall only the cdrdao package we can use the following command:

sudo dnf remove cdrdao

cdrdao Package Contents on Fedora 34

/usr/bin/cdrdao
/usr/bin/cue2toc
/usr/bin/toc2cddb
/usr/bin/toc2cue
/usr/bin/toc2mp3
/usr/lib/.build-id
/usr/lib/.build-id/36
/usr/lib/.build-id/36/cad3a175cee32a87da41feff22ae9cd4343192
/usr/lib/.build-id/75
/usr/lib/.build-id/75/fd02c772b0e1921ed31c46c8541fc1bd9b7d72
/usr/lib/.build-id/a9
/usr/lib/.build-id/a9/99d373d820e4c71c21c05bb0fd8c34e69731e7
/usr/lib/.build-id/cf
/usr/lib/.build-id/cf/e18520dc4dd7ae50f2bec4cb68da63e0833f61
/usr/lib/.build-id/d4
/usr/lib/.build-id/d4/17a7a002729d6db9baff6df69d7d4214a61cb9
/usr/share/cdrdao
/usr/share/cdrdao/drivers
/usr/share/doc/cdrdao
/usr/share/doc/cdrdao/AUTHORS
/usr/share/doc/cdrdao/CREDITS
/usr/share/doc/cdrdao/ChangeLog
/usr/share/doc/cdrdao/README
/usr/share/licenses/cdrdao
/usr/share/licenses/cdrdao/COPYING
/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 Fedora 34 using yum and dnf.