convert .bin to .iso and then mount it to a folder
how to convert .bin to iso -- > Refer
How to convert .bin to iso image, whithout having .cue file. Linux Lab
then mount the .iso
mkdir -p /mnt/iso
mount -o loop -t iso9660 /image.iso /mnt/iso
thats it