It’s really easy to convert bin/cue files into an ISO file, and then mount the ISO in linux.
yum install bchunk
The syntax from bchunk is as follows:
bchunk [-v] [-p] [-r] [-w] [-s]
So if i wanted to convert image,bin and image.cue into image.iso, I’d run the command:
bchunk image.bin image.cue image.iso
Then to mount the ISO in linux you run the command:
mount -o loop -t iso9660 image.iso /mnt/image, where image.iso is the iso is the image that you want to mount and /mnt/image is the mount directory.