Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

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?

share|improve this question

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

Questions on Server Fault are expected to relate to professional server, networking, or related infrastructure administration within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

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.

share|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