What is ISO?
Complete guide to the ISO file format
Last updated:
What is ISO?
ISO is a disk image file format that contains an exact, sector-by-sector copy of an optical disc such as a CD, DVD, or Blu-ray. The name comes from the ISO 9660 filesystem standard used on CD-ROMs, though ISO image files can also contain UDF (Universal Disk Format) filesystems used on DVDs and Blu-rays. ISO files capture everything on a disc: the complete filesystem, boot sectors, directory structures, file data, and all filesystem metadata.
ISO images are the standard format for distributing operating systems, large software packages, and bootable recovery media. Every major Linux distribution is distributed as an ISO file. Virtual machine software like VMware, VirtualBox, and Hyper-V can mount ISO files as virtual optical drives. Burning software like Rufus and balenaEtcher write ISO files to USB drives to create bootable installation media. Modern operating systems can mount ISO files as virtual drives without burning them.
How an ISO Image Works
The ISO 9660 filesystem at the core of the format defines a volume descriptor structure, a path table, and a directory hierarchy laid out in fixed-size logical sectors, allowing any compliant system to read a disc regardless of operating system.[1] Because the image is a faithful copy of the disc's data area, it preserves boot records and filesystem structures byte-for-byte rather than merely copying files.[2]
History and Extensions
ISO 9660 was first published in 1988, derived from the earlier High Sierra Format, and has been revised several times, most recently as ISO/IEC 9660:2023.[1] Its original constraints on filename length and directory depth led to widely used extensions: Rock Ridge added POSIX semantics for Unix systems, Joliet added Unicode long filenames for Windows, and the El Torito specification enabled bootable CDs.[3]
Technical Details and Limitations
Strict ISO 9660 Level 1 limits filenames to the 8.3 form with a restricted character set, and even later levels cap directory nesting and file sizes, which is why hybrid images often embed both Joliet and Rock Ridge metadata.[3] For DVD and Blu-ray content the format commonly wraps a UDF filesystem instead, and many real-world ISO files are hybrid images that combine ISO 9660 with UDF for broad compatibility.[2]
Technical Details
ISO vs Other Archive Formats
| Feature | ISO | ZIP |
|---|---|---|
| Purpose | Disc image[2] | File archive |
| Standard | ISO/IEC 9660[1] | PKWARE APPNOTE |
| Compression | None[3] | DEFLATE |
| Mountable | Yes | No |
| Best for | CD/DVD images, bootable media | General file sharing |
ISO captures a full uncompressed disc filesystem image, while ZIP is a compressed container for arbitrary files.
Pros and Cons
Advantages
Captures everything on a disc including boot sectors, filesystem metadata, and all files exactly as they appear on the original disc.
Windows 8+, macOS, and Linux can mount ISO files as virtual drives natively without third-party software.
VMware, VirtualBox, and other hypervisors can use ISO files directly as virtual optical drives.
The standard for distributing OS installers and software that would otherwise require physical media.
Disadvantages
ISO files are the same size as the original disc content - a DVD ISO can be 4.7 GB, a Blu-ray ISO up to 50 GB.
ISO 9660 disc images are not compressed by default, unlike ZIP or 7Z archives.
Designed for optical disc emulation - not suitable as a general-purpose archive format for arbitrary file collections.
Creating bootable ISO files requires specialized tools that handle boot sector structures correctly.
When to Use ISO
Here are the most common situations where ISO is the right choice:
Operating System Installation
Download Linux, Windows, or other OS installer ISO files and write them to USB drives for clean installations.
Virtual Machine Setup
Mount ISO files in VirtualBox, VMware, or Hyper-V to install operating systems in virtual machines.
Disc Library Preservation
Create ISO backups of DVD or CD collections to preserve them without needing the physical discs.
Bootable USB Creation
Use Rufus or balenaEtcher to write ISO files to USB drives for portable bootable installations.
Convert ISO Files
Need to convert your ISO files? Use our free online converter.
Try Archive Converter FreeFrequently Asked Questions about ISO
How do I open an ISO file?
On Windows 8 and later, double-click the ISO file to mount it as a virtual drive. On macOS, double-click to mount. On Linux, use: sudo mount -o loop filename.iso /mnt/iso
How do I create a bootable USB from an ISO?
Use Rufus (Windows), balenaEtcher (Windows/Mac/Linux), or the dd command (Linux/Mac) to write the ISO to a USB drive. This creates a bootable USB that works like the original disc.
Can I extract files from an ISO without mounting it?
Yes. 7-Zip can extract the contents of an ISO file directly like an archive without mounting it.
What is the difference between ISO and IMG?
Both are disk image formats. ISO specifically targets optical disc filesystems (ISO 9660/UDF). IMG is a more generic term used for various disk image types including hard drive and floppy disk images.
How do I burn an ISO to a disc?
On Windows, right-click the ISO and select “Burn disc image.” On macOS, right-click and use Disk Utility. On Linux, use brasero, k3b, or the wodim command.