How To Install cuetools on Fedora 34
Introduction
In this tutorial we learn how to install cuetools
on Fedora 34.
What is cuetools
Cuetools is a set of utilities for working with cue files and TOC files. It includes programs for conversion between the formats, file renaming based on cue/TOC information, and track breakpoint printing. cuetools 1.4.0 0.26.svn305.fc34 x86_64 69 k cuetools-1.4.0-0.26.svn305.fc34.src.rpm fedora Utilities to work with cue and TOC files http GPLv2 Cuetools is a set of utilities for working with cue files and TOC files. It includes programs for conversion between the formats, file renaming based on cue/TOC information, and track breakpoint printing.
We can use yum
or dnf
to install cuetools
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install cuetools.
Install cuetools 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 cuetools
using dnf
by running the following command:
sudo dnf -y install cuetools
Install cuetools 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 cuetools
using yum
by running the following command:
sudo yum -y install cuetools
How To Uninstall cuetools on Fedora 34
To uninstall only the cuetools
package we can use the following command:
sudo dnf remove cuetools
cuetools Package Contents on Fedora 34
/usr/bin/cuebreakpoints
/usr/bin/cueconvert
/usr/bin/cueprint
/usr/bin/cuetag.sh
/usr/lib/.build-id
/usr/lib/.build-id/16
/usr/lib/.build-id/16/ff72765b0ad1230087e23f2431383696bb7276
/usr/lib/.build-id/35
/usr/lib/.build-id/35/4d268348900c298b166d22bf43c798cc445949
/usr/lib/.build-id/61
/usr/lib/.build-id/61/09ab9750c1a79723d43fadd38c37683cb779fa
/usr/lib/.build-id/e6
/usr/lib/.build-id/e6/25a62b098f5c23c5ae2c96c760832acc01366b
/usr/lib/libcuefile.so.0
/usr/lib/libcuefile.so.0.0.0
/usr/share/doc/cuetools
/usr/share/doc/cuetools/COPYING
/usr/share/doc/cuetools/NEWS
/usr/share/doc/cuetools/README
/usr/share/doc/cuetools/TODO
/usr/share/doc/cuetools/formats.txt
/usr/share/man/man1/cuebreakpoints.1.gz
/usr/share/man/man1/cueconvert.1.gz
/usr/share/man/man1/cueprint.1.gz
/usr/bin/cuebreakpoints
/usr/bin/cueconvert
/usr/bin/cueprint
/usr/bin/cuetag.sh
/usr/lib/.build-id
/usr/lib/.build-id/28
/usr/lib/.build-id/28/6972cdfaf4f2ac5d7108e81bb1a66e96e12aac
/usr/lib/.build-id/92
/usr/lib/.build-id/92/603814c35ea3036e104c204eea5a1f98f06cb3
/usr/lib/.build-id/c5
/usr/lib/.build-id/c5/69cb2ee842ad1be3c8413452e34a07d431355e
/usr/lib/.build-id/f9
/usr/lib/.build-id/f9/c6368247583c2795eb865a60c15a7a7f866b7b
/usr/lib64/libcuefile.so.0
/usr/lib64/libcuefile.so.0.0.0
/usr/share/doc/cuetools
/usr/share/doc/cuetools/COPYING
/usr/share/doc/cuetools/NEWS
/usr/share/doc/cuetools/README
/usr/share/doc/cuetools/TODO
/usr/share/doc/cuetools/formats.txt
/usr/share/man/man1/cuebreakpoints.1.gz
/usr/share/man/man1/cueconvert.1.gz
/usr/share/man/man1/cueprint.1.gz
References
- [cuetools website](http://developer.berlios.de/projects/cuetools/ http://developer.berlios.de/projects/cuetools/)
Summary
In this tutorial we learn how to install cuetools
on Fedora 34 using yum and dnf.