Copying a ISO Image to a USB Drive

Last Updated
June 5, 2026

Required Items

Steps

  1. Insert a removable USB drive, and ensure that there is at least one partition large enough for the ISO image.
  2. Use lsblk to check the drive name & partitions (very often a removable drive will be something like /dev/sda or /dev/sdb).
lsblk -f ## List block devices

## Look for something like the partition tree below

NAME        FSTYPE FSVER LABEL UUID  
sda                                   
└─sda1                                                                             
  1. If the drive has no partition, cfdisk is a user-friendly TUI tool that can create drive partitions.
sudo cfdisk /dev/sda
## Ensure changes are written before exiting the application
  1. Write the ISO image to a partition on the drive:
sudo pv arch.iso -o /dev/sda1

Optional Improvements

sudo pv arch.iso --sync -o /dev/sda1

## or

sudo pv arch.iso -Y -o /dev/sda1
sudo pv arch.ios --sync --stats -o /dev/sda1