Duplicate of
http://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?

link|improve this question
feedback

closed as off topic by SvenW, Chris Thorpe, splattne Aug 4 '10 at 9:43

Questions on Server Fault are expected to generally relate to servers, networking, or desktop infrastructure, within the scope defined in the faq.

1 Answer

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.

link|improve this answer
dd if=/mnt/disk5.iso | ugur It didn't work. – ugur Aug 4 '10 at 9:05
Did you put also the bs=1 parameter? – Janne Pikkarainen Aug 4 '10 at 9:14
i did. What does bs parameter means – ugur Aug 4 '10 at 9:35
bs means Block Size, and in this case it would have been one byte. Oh well. – Janne Pikkarainen Aug 4 '10 at 9:48
feedback