Tagged Questions

ISO 9660 is a standard describing volume and file structure of a CD-ROM. A free available version is the ECMA 119 standard.

learn more… | top users | synonyms

3
votes
5answers
738 views

How can I predict the size of an ISO 9660 filesystem?

I'm archiving data to DVD, and I want to pack the DVDs full. I know the names and sizes of all the files I want on the DVD, but I don't know how much space is taken up by metadata. I want to get as ...
2
votes
1answer
51 views

What are the ISO 2375 and 2735 standards mentioned in the ECMA-119 specification?

Out of ECMA-119 specification: 8.5 Supplementary Volume Descriptor ... 8.5.3 Volume Flags (BP 8): The bits of this field shall be numbered from 0 to 7 starting with the least ...
0
votes
5answers
85 views

Really slow disc image creation (iso 9660) in C

As a fun project I thought I'd write a program to make iso files. As far as I can tell it works, but it reads only 4KB every 30 seconds. I used eject -x 11 to slow my cdrom drive to a reasonable ...
0
votes
2answers
55 views

Where are the first executed bytes of a bootable cd?

I took a look into the iso images (ISO 9660) of small Linux distributions. I found 16 empty sectors, followed by a sector describing the Primary Volume Description. Next sector is commonly a Boot ...
0
votes
1answer
118 views

How to write in memory data to DVD on Linux using C?

I've data in MP4 format which needs to be copied to DVD on Linux platform. Now I am creating MP4 file on hard disk and then burning that file to DVD using growisofs command. It would be more efficient ...
0
votes
4answers
646 views

C/C++ Libraries for reading from Universal Disk Format devices or files

Are there any good free C/C++ libraries that enable reading from common devices with filesystems such as UDF, and ISO9660 and extracting files/metadata etc.? So far all I've been able to find is GNUs ...