0

Duplicate of
https://superuser.com/questions/171795/how-to-read-from-iso-file

Are there any linux command which lets me to read Iso file byte by byte without mounting?

1 Answers1

1

What do you want to do?

dd if=/path/to/your/isofile.iso bs=1 | whateverotherprogram

That would read the file byte by byte and pipe the result to another program, whatever that might be.

Janne Pikkarainen
  • 31,852
  • 4
  • 58
  • 81