software

How to Burn an ISO to a USB: Step-by-Step Guide

A bootable USB created from an ISO image lets you install operating systems, run diagnostics, or rescue a system without relying on optical media. This guide explains how to bur...

Mara Ellison
How to Burn an ISO to a USB: Step-by-Step Guide

A bootable USB created from an ISO image lets you install operating systems, run diagnostics, or rescue a system without relying on optical media. This guide explains how to burn an ISO to USB the right way: verifying the file, choosing a reliable tool, and writing correctly for your platform. Follow these steps to produce a consistently bootable USB drive.

What is an ISO and Why Burn to USB?

An ISO is a sector-by-sector copy of an optical disc, typically distributed for operating system installers, Live environments, or recovery tools. Burning or writing an ISO to USB means producing a bit-for-bit copy so the drive becomes bootable. Common use cases include installing operating systems, running hardware diagnostics, or repairing a system. Using USB 2.0 or USB 3.0 is generally faster than DVD, and modern BIOS/UEFI firmware supports USB boot natively.

Key Terms and Preparation Steps

Key Definitions and Concepts

  • ISO: A standard disk image format (ISO/IEC 9660) that preserves the exact layout of a disc.
  • Bootable USB: A drive that can start a computer and load an operating system or utility.
  • Checksum: A cryptographic hash (e.g., SHA256) used to verify file integrity.
  • USB Drive Capacity: Must be equal to or larger than the ISO size to hold the full image.

Preparation and Requirements

  • Download the official ISO from the vendor’s website to avoid tampered files.
  • Verify the ISO with a checksum when the publisher provides one; compare it to the vendor’s published value.
  • Back up important data from the USB drive; the process will erase all existing content.
  • Ensure the BIOS/UEFI is set to allow USB boot and check the boot order if the PC does not start from the drive automatically.
Use vendor-recommended tool; verify options for ISO vs disk image mode
Certain tools offer dd for raw copy on Linux/macOS
Attribute Verified Detail Source Type
ISO File Integrity Verify with SHA256 or MD5 when provided by the vendor Publisher guidance
Recommended USB Standard USB 3.0 or USB 2.0, provided the system supports booting from that interface Compatibility best practice
Minimum Free Space At least the ISO file size; typically 4GB+ for modern OS installers Capacity requirement
BIOS/UEFI Setting Enable USB boot and adjust boot order if needed System firmware
Write Method

How to Burn an ISO to USB on Windows

Windows users have several reliable options, including built-in tools and third-party utilities. The goal is to perform a raw write so the USB becomes a precise copy of the installation media.

Option 1: Use Diskpart (Command Line)

Diskpart can clean, partition, and write an image to USB. This method requires caution because it targets disk numbers, not drive letters.

  1. Insert the USB drive and note its disk number (Disk 1, Disk 2, etc.) in Disk Management.
  2. Open Command Prompt as administrator and run diskpart.
  3. Run these commands in order:
  4. list disk to identify drives.
  5. select disk N where N is your USB disk number.
  6. clean to erase all data.
  7. create partition primary.
  8. format fs=ntfs quick (or FAT32 if your firmware requires it).
  9. active.
  10. assign.
  11. Exit diskpart and use diskcopy or a tool that supports raw image writes if available; note that diskpart alone does not write ISO content directly.

Rufus is a widely trusted, open-source tool that writes ISO images directly and verifies success.

  1. Download Rufus from the official project site.
  2. Insert the USB drive; open Rufus as administrator.
  3. Select the USB drive under Device.
  4. For Boot selection, choose SELECT and pick your ISO file.
  5. Confirm partition scheme (MBR for BIOS or GPT for UEFI) and target system type.
  6. Leave other settings at default unless you have a specific reason to change them.
  7. Click START and allow the process to complete; Rufus will indicate write success.

Option 3: Use PowerShell (Alternative)

PowerShell offers the DiskImage cmdlet for simple writes, when supported.

Get-Disk | Where-Object {$_.OperationalStatus -eq 'Offline' -and $_.BusType -eq 'USB'}

Follow prompts, then use:

Mount-DiskImage -ImagePath "C:\path\to\file.iso" -StorageType USB

Note: This approach depends on Windows version and may not work for all ISO types or firmware setups; verify that the drive boots after writing.

How to Burn an ISO to USB on macOS

macOS provides native command-line tools to create bootable USB drives. The key is using dd carefully, because it writes directly to a device and will destroy any data on the target.

  1. Insert the USB drive and open Disk Utility to identify its device identifier (e.g., /dev/disk2).
  2. Unmount the disk (do not eject) using Disk Utility or terminal: diskutil unmountDisk /dev/diskX.
  3. Use sudo dd if=~/Downloads/file.iso of=/dev/diskX bs=1m to write the image. This may take several minutes; there is no progress bar, so wait for the shell prompt to return.
  4. After completion, run sudo diskutil eject /dev/diskX and remove the drive.

Verification on macOS

Compare checksums on the original ISO and the written USB if possible. While macOS does not natively compare an image to a USB, you can create a new image from the USB with dd and verify hashes match the source when permitted by licensing and hardware support.

How to Burn an ISO to USB on Linux

Linux offers both graphical and terminal methods; choose based on comfort level and the presence of tools like lsblk, dd, and lsblk -o NAME,SIZE,MOUNTPOINT to identify the correct device.

Tools such as BalenaEtcher, Raspberry Pi Imager, and GNOME Disks provide a user-friendly workflow.

  1. Insert the USB drive.
  2. Open the tool and select Flash from ISO or similar.
  3. Choose the ISO file, confirm the target USB, and start the write.
  4. Eject safely when complete.

Terminal Method with dd

Use dd when you need a direct, sector-level copy.

lsblk
sudo umount /dev/sdX1
sudo dd if=~/Downloads/file.iso of=/dev/sdX bs=4M status=progress oflag=sync

Caution: Using the wrong of value can overwrite system disks. Always verify with lsblk or fdisk -l before writing.

Verification and Troubleshooting

After writing, confirm the USB is bootable and the image is intact.

Verification Checklist

  • Check SHA256 or SHA1 of the original ISO and, if possible, of a re-created image from the USB for comparison.
  • Try booting the USB on a test machine; observe bootloader menus and ensure kernel/initramfs load without errors.
  • Confirm partition layout with fdisk -l /dev/sdX or equivalent; a single, bootable primary partition is typical.

Common Issues and Fixes

  • PC does not boot from USB: Check BIOS/UEFI firmware settings, ensure Secure Boot compatibility, and confirm the boot mode (MBR vs GPT) matches the image.
  • Drive shows as RAW or corrupted: Re-create the USB using the correct tool and settings; verify checksums before and after writing.
  • Incomplete boot or hangs at bootloader: Use a freshly formatted USB and retry with verified ISO and a reputable tool.

Choose a method that matches your comfort level and system environment. Verified tools help ensure the write is bit-identical and bootable.

  • Windows: Rufus (GUI, reliable and widely tested).
  • macOS: dd terminal command or BalenaEtcher for GUI workflows.
  • Linux: BalenaEtcher for GUI; dd or ddrescue for precise terminal control.

Creating a bootable USB from an ISO is a routine task when you follow verified steps: use a reliable tool, verify the ISO checksum, use a properly prepared USB drive, and confirm boot behavior on test hardware. These practices reduce failure risk and ensure a consistent, bootable result across Windows, macOS, and Linux.

FAQ

Reader questions

Can I copy an ISO file to USB by simple drag-and-drop?

No; drag-and-drop copies the file but does not make the drive bootable. You must write the image in raw mode so the drive’s boot sector and partition layout match the ISO.

Which USB speed should I use?

USB 3.0 is faster, but ensure your system and target device support it. Use USB 2.0 if you encounter compatibility issues with older firmware.

Does the ISO have to be exact on the USB?

Yes; the bytes must match the source image. Tools like dd, Diskpart, and Rufus perform sector-level copies that preserve this requirement.

Is it safe to use the USB after writing an ISO?

Yes; you can restore it later by reformatting. The writing process overwakes the partition table and file system, but the device remains usable.

Related Reading

More pages in this topic cluster.

How to Migrate Data From One Mac to Another: A Verified Step-by-Step Guide

Migrating data from one Mac to another is usually straightforward if you plan the workflow and choose the right transfer method. This guide explains the most reliable options—...

Read next
Pixel Drawing Software: A Comprehensive Guide to Tools, Techniques, and Best Practices

Pixel drawing software enables artists and designers to create detailed graphics at the pixel level, offering precise control over color, shape, and texture. These tools are fou...

Read next
Car Service Reminder App: How It Works and Why It Matters

A car service reminder app is a digital tool that tracks maintenance intervals, stores records, and prompts you when service is due. Instead of relying on paper receipts or memo...

Read next