Saving an ISO image of a CD
Tim B (1998) 14 posts |
How can I save an ISO image of an existing data CD on my Iyonix? |
Jon Abbott (1421) 2651 posts |
I posted some example code showing how to go about creating an ISO if it’s any help. Are you sure you want an ISO though and not a BIN/CUE? For that you’ll need to use another OS as you don’t get that level of access under RISCOS. |
Patrick M (2888) 115 posts |
If you have a computer running linux with a CD/DVD drive, then you can simply “cat /dev/cdrom > file.iso”, which I have done in the past to back up old CD-ROMs. |
Steffen Huber (91) 1953 posts |
No, it does not. The CD title is encoded inside the image data. Remount the image with CDFaker and you’ll see that the CD title is intact.
A port of cdrecord is tricky because of two things: first, it needs a specially implemented SCSI transport layer. The RISC OS SCSI stuff is unlike that of all other OSes (well, basically all OSes handle it completely different!). Second, it uses smake to build. Which is esoteric. |
John Williams (567) 768 posts |
Smake and mirrors? |
Steffen Huber (91) 1953 posts |
DOS uses the same ASPI as old Windows (16bit ASPI). Nowadays, Windows has SPTI instead. IIRC cdrecord supports both. Explicitly. Just look at the sources. libscg is the SCSI part. There are seperate implementations for BSD, AtariST, AmigaOS, HP Apollo Unix, NeXTStep, VMS, UNixware, QNX, OS/2…
A “make” variant of the cdrecord developer. See https://sourceforge.net/projects/s-make/ |
Tim B (1998) 14 posts |
Thanks for the correction. My memory isn’t what it was. |