.ISO

ISO File

ISO disc image (ISO 9660 / UDF)
Ask a question
QUICK ANSWER

An ISO file is a sector-by-sector copy of an optical disc (CD, DVD, or Blu-ray) stored as a single file. On Windows 8 and later, right-click it and choose Mount - no software needed. To create a bootable USB installer (Windows, Linux), use Rufus or Ventoy. To pull out individual files without mounting, open the ISO in 7-Zip.

Developer: ISO (International Organization for Standardization) Category: Disk Image Files Open standard MIME: application/x-iso9660-image
OPENS ON Windows macOS Linux
Related: .BIN · .MDF · .DMG · .NRG

On this page

19k+ extensions indexed
Last reviewed Jul 20, 2026

Not sure what your file is?

Drop any file into our identifier - we read just the first bytes to name the format.

Identify a file

What is the ISO file format?

Files with the .iso extension contain optical disc images stored as an uncompressed, sector-by-sector copy of the original disc - including its complete file system and directory structure - in a single file.

Data from any type of optical disc (CD, DVD, or Blu-ray) can be archived as a digital .iso disc image. Disc images are created to simplify data transfer compared with moving physical media: a .iso file can be sent across a network, or carried using any type of removable storage device.

The extension name comes from the ISO 9660 standardising document, which defines the data-storage format used on CDs. Modern DVD and Blu-ray images often rely on the UDF (Universal Disc Format) file system, and many .iso files are hybrid images carrying both ISO 9660 and UDF descriptors for cross-platform compatibility. .iso files are widely used to distribute bootable disc images with operating-system installers over the internet, and to emulate optical drives - which helps reduce physical wear on both drives and discs.

.iso files can be mounted in so-called virtual optical drives, where they behave exactly like a physical disc inserted in a real drive. All Unix-based operating systems support mounting .iso files natively - for example using mount -o loop image.iso /mnt/cdrom. Windows has offered native mounting directly in File Explorer since Windows 8; earlier versions required specific third-party software. On macOS, DiskImageMounter opens a .iso automatically on double-click.

Structure of .iso files

Each .iso is an exact binary duplicate of a specific disc, so the content naturally varies. The internal layout, however, is well-defined by ISO 9660: the first 32,768 bytes form a reserved system area, followed by volume descriptor sectors bearing the signature CD001 at byte offset 32,769 (sector 16). Each logical sector is 2,048 bytes. Bootable images embed an El Torito boot record. Related disc-image formats include .img, .nrg (Nero), .bin/.cue pairs, and the macOS-native .dmg.

Security & safety

RISK: MEDIUM

The ISO format itself is passive data, but ISOs are a common malware-delivery method: an ISO mounts as a drive and can hide an executable that bypasses some 'mark of the web' download warnings, a technique used in real phishing campaigns. Risks: pirated OS or software ISOs may contain trojans or tampered installers; download OS ISOs only from the official vendor (microsoft.com, the distro's site) and verify the SHA-256 checksum where provided. Separately, the DAEMON Tools website was hit by a supply-chain attack in 2025 - avoid that installer and use native mounting plus Rufus/Ventoy/7-Zip instead.

Format details

in a nutshell
FULL NAMEISO disc image (ISO 9660 / UDF)
DEVELOPERISO (International Organization for Standardization)since ISO 9660 published 1988; UDF widely used for larger images
MIME TYPEapplication/x-iso9660-image
TYPEOptical-disc image - sector-by-sector copy (binary)
STANDARDOpen · royalty-free
MAGIC BYTES · FILE SIGNATURE
OFFSET
80018002800380048005
HEX
4344303031
ASCII
CD001
ISO 9660 places 'CD001' at byte 0x8001 (sector 16). UDF images carry 'NSR02'/'NSR03' or 'BEA01' descriptors. There is no signature in the first bytes, which are zero-filled system area.

Programs that open ISO files

Windows5 apps
7-Zip Open-source Right-click the ISO > 7-Zip > Open archive to browse and extract files without mounting or burning.
ImgBurn Free Use 'Write image file to disc' to burn an ISO to a CD/DVD/Blu-ray. (Older tool; download only from imgburn.com to avoid bundled adware.)
Windows File Explorer (built-in mount) Built-in Right-click the ISO > Mount. It appears as a virtual DVD drive in This PC; eject when done. Native since Windows 8 (2012).
Rufus Open-source Select your USB drive, pick the ISO, click Start to create a bootable USB installer (Windows/Linux).
Ventoy Open-source Install Ventoy to a USB stick once, then copy any number of ISO files onto it and choose at boot. No reformatting per ISO.
macOS2 apps
Finder / DiskImageMounter (built-in) Built-in Double-click the ISO to mount it as a volume; or use Disk Utility to burn it to a disc.
balenaEtcher Open-source Cross-platform: select the ISO, select the USB drive, Flash - simple bootable-USB creation on Mac and Linux.
Linux3 apps
K3b Open-source Burn an ISO to disc on KDE (Tools > Burn Image).
GNOME Disks / mount command (built-in) Built-in Right-click > Open with Disk Image Mounter, or: sudo mount -o loop file.iso /mnt to mount as a loop device.
balenaEtcher Open-source Flash an ISO to a USB drive with a simple GUI.

Technical details

deep spec
Format typeSector-by-sector binary disc image, stored uncompressed
MIME typeapplication/x-iso9660-image
ISO 9660 magic bytesCD001 at byte offset 32,769 (sector 16, byte 1) - primary volume descriptor identifier
System areaFirst 32,768 bytes (16 sectors) reserved; typically zero-filled, may hold bootloader code
Logical sector size2,048 bytes per sector (matches physical CD/DVD sector size)
Primary file systemISO 9660 - standardised structure for CDs and legacy DVD images
Extended file systemUDF (Universal Disc Format) - used for DVD, Blu-ray, and files larger than 4 GB
Hybrid image supportA single .iso can carry both ISO 9660 and UDF descriptors for cross-platform compatibility
Boot record formatEl Torito specification - embedded boot catalogue enables bootable CD/DVD images
ISO 9660 file-name limitLevel 1: 8+3 uppercase ASCII; Joliet extension adds Unicode long names; Rock Ridge adds POSIX permissions
Max single-file size4 GB under ISO 9660 (32-bit size field); UDF removes this restriction
CompressionNone - raw binary copy of disc sectors; image size equals the disc capacity used
Native OS mountingWindows 8+ (File Explorer), macOS (DiskImageMounter), Linux (mount -o loop)
Typical applicationsOS installer distribution, software archiving, virtual drive emulation, bootable USB creation
ReleasedISO 9660 published 1988; UDF widely used for larger images
Open standardYes · royalty-free
Specificationwww.iso.org

ISO conversions

Community Q&A

asked by users
Ask a quick question
Get help from people who work with ISO files. Be specific - include your system and software version.
No account needed · answers usually within a day

No questions yet - be the first to ask about ISO files.

Frequently asked questions

How do I mount an ISO file in Windows?
Right-click the ISO and choose Mount (Windows 8 and later). It appears as a virtual DVD drive in This PC; open it like a disc. To remove it, right-click the virtual drive and choose Eject. No extra software is needed.
How do I make a bootable USB from an ISO?
Use Rufus or Ventoy on Windows, or balenaEtcher on any OS. In Rufus, pick the USB drive and the ISO and click Start. Ventoy lets you copy several ISOs onto one stick and choose at boot. The USB is erased during setup.
How do I open an ISO without burning it?
Mount it (right-click > Mount on Windows, double-click on macOS) to browse it as a drive, or open it with 7-Zip to extract individual files. Burning to a disc is only needed if you specifically want a physical copy.
How do I burn an ISO to a DVD?
On Windows right-click the ISO and choose 'Burn disc image', or use ImgBurn; on macOS use Disk Utility or Finder's Burn. Insert a blank disc of sufficient size first.
What is an ISO file used for?
It is a single-file copy of a whole disc, used mainly to distribute operating-system and software installers, back up discs, and create bootable USB sticks or burned discs.
Can I extract an ISO like a ZIP?
Yes - 7-Zip, PeaZip and similar archive managers open ISO files and let you extract their contents directly, without mounting or burning.

References

1Microsoft Support - Burn or mount a disc image (ISO)support.microsoft.com
2Ubuntu - Create a bootable USB stick (Rufus/Etcher)ubuntu.com

Keep exploring

across the database

Top extensions this week

1.AQQAQQ Instant Messenger File
2.MDMarkdown Document
3.BINCD/DVD Disc Image (BIN/CUE)
4.RPMSGRestricted Permission Message
5.PARTPartial Download File
6.CRDOWNLOADChrome Partial Download File
7.NOMEDIAAndroid No-Media Marker File
8.PRDXSoftMaker Presentations Document
9.PRO6XProPresenter 6 Bundle File
10.SWFSmall Web Format (Shockwave Flash)

Related extensions

.BINCD/DVD Disc Image (BIN/CUE)
.MDFMedia Descriptor File (Alcohol 120% / DAEMON Tools disc image)
.DMGApple Disk Image
.NRGNero Burning ROM Disc Image
.TIBAcronis True Image Backup
.OVAOpen Virtualization Format Archive

Free file tools

An in-browser file identifier and image converter - everything runs on your device.

Open the toolbox

Browse file extensions A-Z