How to mount a .bin file on a Mac?

19

4

I have a bin file and I want to mount it without having to burn it in my mac like my iso-files. How do I do that?

8k_of_power

Posted 2009-11-13T14:01:46.503

Reputation: 603

Daemon Tools works well. – Gaʀʀʏ – 2014-07-12T18:01:16.053

Just tried in El Capitan: Open Disk Utility, File->Open and select the image file. .img extension works, haven't tried if it takes .bin. – schieferstapel – 2016-07-13T10:55:54.217

Neither Daemon Tools nor Disk Utility will open a .bin file in Sierra. – Sirap – 2018-09-12T15:18:27.203

Answers

20

You can use the bchunk, which should be in MacPorts (alternatives are: bin2iso and isodump), to convert that .bin/.cue pair to .iso, and then mount ISO file. With bchunk, the command (run in console) would be

bchunk image.bin image.cue image.iso

There's also ccd2iso, but I believe it doesn't support .bin files - only .img.

Further, I'll be talking from a Linux perspective, but as long as Mac is a FreeBSD derivative, it may work. You may want to use the console mount command (run man mount to read the manual) together with cdfs or cdemu. These will require lots of manuals reading and console love, and success will depend on what kind of kernel Macs use. Only try this as a last, really-desperate method.

chronos

Posted 2009-11-13T14:01:46.503

Reputation: 1 149

use bchunk -w image.bin image.cue track to output to wav files – ihatetoregister – 2018-01-29T21:33:59.883

11with homebrew you can install bchunk with brew install bchunk – cwd – 2011-11-04T11:46:49.100

6

If you have Toast, add the bin file in Toast and save as image .toast file. Rename .toast extension to .dmg. Double-click to mount on desktop and copy content to hard drive.

jay

Posted 2009-11-13T14:01:46.503

Reputation: 61

3

Ctrl + click on the .bin file then select Open With -> Disc Utility.

John T

Posted 2009-11-13T14:01:46.503

Reputation: 149 037

4This does not work for me on Mac OS X 10.9. – herzbube – 2014-01-31T16:15:38.577

1

cabextract is a package that provides utilities for using .bin files. It's available through MacPorts. It allows you to extract files from Microsoft cabinet files.

Jeremy L

Posted 2009-11-13T14:01:46.503

Reputation: 2 587