How To Install xorriso1 on CentOS 8
Introduction
In this tutorial we learn how to install xorriso1 on CentOS 8.
What is xorriso1
Xorriso is a program which copies file objects from POSIX compliant filesystems into Rock Ridge enhanced ISO-9660 filesystems and allows session-wise manipulation of such filesystems. It can load management information of existing ISO images and it writes the session results to optical media or to filesystem objects. Vice versa xorriso is able to copy file objects out of ISO-9660 filesystems. Filesystem manipulation capabilities surpass those of mkisofs. Xorriso is especially suitable for backups, because of its high fidelity of file attribute recording and its incremental update sessions. Optical supported media DVD-RAM, BD-R and BD-RE.
We can use yum or dnf to install xorriso1 on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install xorriso1.
Install xorriso1 on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install xorriso1 using yum by running the following command:
sudo yum -y install xorriso1
Install xorriso1 on CentOS 8 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 xorriso1 using dnf by running the following command:
sudo dnf -y install xorriso1
How To Uninstall xorriso1 on CentOS 8
To uninstall only the xorriso1 package we can use the following command:
sudo dnf remove xorriso1
References
Summary
In this tutorial we learn how to install xorriso1 on CentOS 8 using yum and dnf.