cancel
Showing results for 
Search instead for 
Did you mean: 
Trevor
Starfighter Starfighter
Starfighter
  • 60 Views

Access .iso File Content

I have an .iso file named "os.iso", in my /tmp directory.
I need to access the contents of this .iso.  What command
can I use to mount this .iso file, so that I can access its
content.  My mount point is /mnt/read.

 

Trevor "Red Hat Evangelist" Chandler
Labels (3)
2 Replies
JohnSitu
Cadet
Cadet
  • 53 Views

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

Trevor
Starfighter Starfighter
Starfighter
  • 47 Views

Awesome!

Now, my kernel doesn't currently support the
"udf" filesystem type.  Am I stuck like chuck?

Trevor "Red Hat Evangelist" Chandler
Join the discussion
You must log in to join this conversation.