This guide shows how to mount a CD or DVD on RHEL / CentOS 8 Linux.
Monut
(1) Create a mount point directory.
mkdir /mnt/cdrom
(2) To mount a CD or DVD, run the following command.
mount -t iso9660 /dev/cdrom /mnt/cdrom
Unmount
To unmount a mounted CD or DVD, run the following command.
umount /mnt/cdrom
That’s about it.