How To Install dvd+rw-tools on CentOS 8

dvd+rw-tools is Toolchain to master DVD+RW/+R media

Introduction

In this tutorial we learn how to install dvd+rw-tools on CentOS 8.

What is dvd+rw-tools

Collection of tools to master DVD+RW/+R media. For further information see http

We can use yum or dnf to install dvd+rw-tools on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install dvd+rw-tools.

Install dvd+rw-tools 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 dvd+rw-tools using dnf by running the following command:

sudo dnf -y install dvd+rw-tools

Install dvd+rw-tools 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 dvd+rw-tools using yum by running the following command:

sudo yum -y install dvd+rw-tools

How To Uninstall dvd+rw-tools on CentOS 8

To uninstall only the dvd+rw-tools package we can use the following command:

sudo dnf remove dvd+rw-tools

dvd+rw-tools Package Contents on CentOS 8

/usr/bin/dvd+rw-booktype
/usr/bin/dvd+rw-format
/usr/bin/dvd+rw-mediainfo
/usr/bin/dvd-ram-control
/usr/bin/growisofs
/usr/lib/.build-id
/usr/lib/.build-id/7a
/usr/lib/.build-id/7a/e10e609d8a29cd39aa577d18bb428fbaf262ef
/usr/lib/.build-id/c3
/usr/lib/.build-id/c3/ceb6b7b941d25589abc426d72abfe554e52acc
/usr/lib/.build-id/cc
/usr/lib/.build-id/cc/e8ad3ac47cc3c86e569381c526b08a7d5cc3a3
/usr/lib/.build-id/e7
/usr/lib/.build-id/e7/5f492c75c0e5e6a2e6b4cfaa08cbd3805c1948
/usr/lib/.build-id/fa
/usr/lib/.build-id/fa/b13a78d2708b3f84e43b8f3bf7e87557b3c085
/usr/share/doc/dvd+rw-tools
/usr/share/doc/dvd+rw-tools/LICENSE
/usr/share/doc/dvd+rw-tools/index.html
/usr/share/man/man1/dvd+rw-format.1.gz
/usr/share/man/man1/growisofs.1.gz

References

Summary

In this tutorial we learn how to install dvd+rw-tools on CentOS 8 using yum and dnf.