如何挂载AARUF CD镜像?

如何挂载AARUF CD镜像?

我有一个以 AARUF 作为文件扩展名的 CD 映像文件,我想访问它的文件。

使用file,我没有得到有关格式的任何进一步信息:

$ file image.aaruf
image.aaruf: data
$ 

尝试挂载映像会fuseiso导致错误:

init: wrong standard identifier in volume descriptor 0, skipping..
init: wrong standard identifier in volume descriptor 1, skipping..
init: wrong standard identifier in volume descriptor 2, skipping..
init: wrong standard identifier in volume descriptor 3, skipping..
init: wrong standard identifier in volume descriptor 4, skipping..
init: wrong standard identifier in volume descriptor 5, skipping..
init: wrong standard identifier in volume descriptor 6, skipping..
init: wrong standard identifier in volume descriptor 7, skipping..

答案1

显然,AARUF文件的格式称为Aaru Image Format:https://github.com/aaru-dps/Aaru

我能够使用 GitHub 发布页面中的二进制文件将图像转换为 CDRWIN 图像格式:

$ wget https://github.com/aaru-dps/Aaru/releases/download/v5.3.2/aaru-5.3.2_linux_amd64.tar.gz
$ tar xvf aaru-5.3.2_linux_amd64.tar.gz
$ ./aaru image convert --force image.aaruf image.cue

可以安装结果image.bin来访问图像内容:

$ mkdir content
$ fuseiso image.bin content

卸载:

$ fusermount -u content

相关内容