如何读取 Iso 文件?

如何读取 Iso 文件?

重复的
https://superuser.com/questions/171795/how-to-read-from-iso-file

是否有任何 Linux 命令可以让我逐字节读取 Iso 文件而无需挂载?

答案1

你想让我做什么?

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

这将逐字节读取文件并将结果传送到另一个程序,无论它是什么。

相关内容