hello, i just wrote a boot sector in asm ( nasm to be specific ) and i want to make it into a .iso so i can run it from Virtual Box. I'm using Linux Mint 9 ( i know noob right? but i love it ) i was looking for this on google but no luck all i found required .bin and .cue which i cant figure out how to generate lol.
Thanks in advanced.
.bin to .iso
Moderator: Coders of Rage
Re: .bin to .iso
bchunk is the tool you're looking for in order to convert a .bin & .cue into an iso.
sudo apt-get install bchunk if you're on debian / ubuntu.
sudo apt-get install bchunk if you're on debian / ubuntu.
- WSPSNIPER
- Chaos Rift Regular
- Posts: 145
- Joined: Sun Jan 03, 2010 6:19 pm
- Current Project: top down shooter
- Favorite Gaming Platforms: ps3
- Programming Language of Choice: c++
Re: .bin to .iso
Xeno wrote:bchunk is the tool you're looking for in order to convert a .bin & .cue into an iso.
sudo apt-get install bchunk if you're on debian / ubuntu.
sweet, thanks but how do i get a .cue file? i can generate the .bin with nasm but idk how to get the .cue and you need it to make the .iso with bchunk
Re: .bin to .iso
I'm not 100% sure, but I think you can just create a new text file in the following format:
and save it as a .cue
Code: Select all
FILE “theNameOfYourFile.bin†BINARY
TRACK 01 MODE1/2352
INDEX 01 00:00:00
- WSPSNIPER
- Chaos Rift Regular
- Posts: 145
- Joined: Sun Jan 03, 2010 6:19 pm
- Current Project: top down shooter
- Favorite Gaming Platforms: ps3
- Programming Language of Choice: c++
Re: .bin to .iso
thanks ill try that!Xeno wrote:I'm not 100% sure, but I think you can just create a new text file in the following format:
and save it as a .cueCode: Select all
FILE “theNameOfYourFile.bin†BINARY TRACK 01 MODE1/2352 INDEX 01 00:00:00
- WSPSNIPER
- Chaos Rift Regular
- Posts: 145
- Joined: Sun Jan 03, 2010 6:19 pm
- Current Project: top down shooter
- Favorite Gaming Platforms: ps3
- Programming Language of Choice: c++
Re: .bin to .iso
well it worked but dident at the same time, it made the .iso but there is no data in it and dosent open in virtual boxWSPSNIPER wrote:thanks ill try that!Xeno wrote:I'm not 100% sure, but I think you can just create a new text file in the following format:
and save it as a .cueCode: Select all
FILE “theNameOfYourFile.bin†BINARY TRACK 01 MODE1/2352 INDEX 01 00:00:00