파일 확장자가 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