
我有一個以 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