ISO 9660
(→See also) |
|||
Line 5: | Line 5: | ||
|mimetypes={{mimetype|application/x-iso9660-image}} | |mimetypes={{mimetype|application/x-iso9660-image}} | ||
|kaitai struct=iso9660 | |kaitai struct=iso9660 | ||
+ | |released=1986 (as ECMA-119), 1988 (as ISO 9660) | ||
}} | }} | ||
'''ISO 9660''' is a read-only [[filesystem]] often used on [[CD-ROM|CD-ROMs]]. It is also common to encounter files containing an [[ISO image|image]] of an ISO 9660 filesystem. | '''ISO 9660''' is a read-only [[filesystem]] often used on [[CD-ROM|CD-ROMs]]. It is also common to encounter files containing an [[ISO image|image]] of an ISO 9660 filesystem. |
Latest revision as of 18:03, 18 December 2021
ISO 9660 is a read-only filesystem often used on CD-ROMs. It is also common to encounter files containing an image of an ISO 9660 filesystem.
Contents |
[edit] Format details
The ISO 9660 format uses a sequence of fixed-size sectors, almost always 2048 bytes each. Many CD-ROM image files (especially .iso files) are simply a dump of this sector data.
However, an actual CD-ROM has additional data before and after the 2048 data bytes, and some CD-ROM image files use a more-raw format that retains this extra data. This can be necessary when the CD also contains non-ISO 9660 data, such as audio data. So, the file will consist of blocks that are larger than 2048 bytes (often 2336 or 2352 bytes), with the ISO 9660 data bytes appearing in the middle of each block. For example, see CUE/BIN format, in which the CUE file specifies the layout of the BIN file.
[edit] File name
The standard specifies a very limited filename format. At its strictest interchange level, it only allows DOS-style "8.3" names, uppercase only. At less strict levels, filenames can be up to 31 characters. Several extensions, mainly Rock Ridge and Joliet, were developed to mitigate these limitations.
The filenames also have a VMS-style version number, so sometimes they are shown with a ";1" suffix.
[edit] File size
The size of a file is limited to 4GB (2GB in some implementations). This is irrelevant with respect to CD-ROMs, because of their small capacity, but it is a reason to avoid using ISO 9660 on DVD-ROMs and other media. (A feature called "multiple extents" makes larger files possible, but support for it may be limited.)
[edit] Identification
For the usual ISO 9660 image file format, the ASCII string "CD001
" appears at offset 32769, and also 2048 bytes later at offset 34817.
The first 32768 bytes are not used. Be aware that hybrid filesystems are possible. Just because something is a valid ISO 9660 image, doesn't mean it can't also be a valid file of some other type.
[edit] Extensions
Some extensions to ISO 9660 are listed here.
See also: Wikipedia:Category:ISO 9660 extensions
[edit] SUSP
Main article: System Use Sharing Protocol
[edit] Rock Ridge
Main article: Rock Ridge
SUSP-based.
[edit] Joliet
Main article: Joliet
[edit] El Torito
Main article: El Torito
[edit] CD-ROM XA
Main article: CD-ROM XA
[edit] Apple extensions
Main article: Apple ISO 9660 extensions
Signature "AA
" or "BA
" in directory record system use area. "AA" is SUSP/Rock Ridge-like.
[edit] Amiga extensions
SUSP/Rock Ridge "AS
" signature.
[edit] AAIP
Main article: AAIP
SUSP-based; "AL
" signature.
[edit] zisofs extensions
Main article: zisofs
SUSP/Rock Ridge "ZF
" signature.
[edit] isofs transparent compression
Main article: isofs transparent compression
SUSP/Rock Ridge "ZZ
" signature.
[edit] RISC OS extensions
Main article: ARCHIMEDES ISO 9660 extension
Signature "ARCHIMEDES
" in directory record system use area.
[edit] TRANS.TBL
Main article: TRANS.TBL
[edit] See also
- ISO image
- High Sierra - Predecessor
- Universal Disk Format (UDF) - A successor to ISO 9660
- Hybrids of Apple Partition Map and ISO 9660 are common.
- See Disk Image Formats#Optical Disc Image Formats for formats that might contain this format.
[edit] Specifications
- ECMA-119
- ISO 9660:1988 (not free to download)
- OSDev Wiki: ISO 9660
[edit] Software
[edit] Decoding
(software known to have a convenient feature to extract all files from an unmounted .iso image file)
- 7-Zip, see here for an example
- libarchive → bsdtar
- The Unarchiver
[edit] Other
- isoinfo can perform basic operations and some validation.
- libcdio (
iso-info
,iso-read
, ...) - Operating systems often have filesystem drivers for ISO 9660. On Linux, an ISO 9660 image file can be mounted using a loopback driver (
mount -t iso9660 -o loop ...
). - isolyzer is a tool that verifies if the file size of an ISO image is consistent with the information in its filesystem-level headers. This can be useful for detecting incomplete (e.g. truncated) ISO images. Apart from ISO 9660, isolyzer also supports UDF, HFS and HFS+, as well as hybrids of all of these filesystems.
- cdrkit (Wikipedia article) (genisoimage, wodim, etc.)
- Cdrtools (mkisofs, cdrecord, etc.)
- libburnia (xorriso, etc.)