Jeanette:
...
the cue file reads as follows:
FILE "E-MU Xtreme Lead X.bin" BINARY
TRACK 01 MODE1/2352
INDEX 01 00:00:00
...
According to:
https://www.gnu.org/software/ccd2cue/manual/html_node/MODE-_0028Compact-Dis…
http://cdrlabs.com/forums/mode-versus-mode-discs-t8075.html
that means that track 1 is a CD-ROM data raw track (i.e. track 1 of the
bin file is not an iso image):
"Mode 1 divides those 2352 bytes into 12 synchronization bytes, 4 header bytes,
2048 bytes of user data, and 288 bytes of EDC (error detection code) and ECC
(error correcting code)."
so mount -o loop -t iso9660 woun't work.
There seems to be software to handle it directly:
https://forums.afterdawn.com/threads/bin-cue-iso-frequently-asked-questions…
There also seems to be something to convert the bin file to an iso
image (which you then can with mount -t iso9660):
https://github.com/not-a-user/raw2iso
It says it needs an toc file, so use:
https://sourceforge.net/projects/cue2toc/
for that.
Regards,
/Karl Hammar