First, make sure /mnt/read exists with the command:
sudo mkdir -p /mnt/read
Second, use the command:
sudo mount -t udf -o loop /tmp/os.iso /mnt/read
Awesome!
Now, my kernel doesn't currently support the
"udf" filesystem type. Am I stuck like chuck?
No, you can either install udf with the following command:
sudo dnf install udf
Or try to use the mount command without the filesystem option -t:
sudo mount -o loop /tmp/os.iso /mnt/read
Hello,
To mount the .iso file, use the command sudo mount -o loop /tmp/os.iso /mnt/read
Regards
Gopinath
Red Hat
Learning Community
A collaborative learning environment, enabling open source skill development.