重复的 https://superuser.com/questions/171795/how-to-read-from-iso-file
有没有任何Linux的命令,让我读取Iso文件逐字节读取而不装入?
您想做什么?
dd if=/path/to/your/isofile.iso bs=1 | whateverotherprogram
这将逐字节读取文件,并将结果传送给另一个程序,无论这可能是什么。