Create bootable USB drive from ISO image on Linux & Windows

article-featured-image

This article is about creating a bootable USB drive from an ISO image. Below are methods that will work on Linux and Windows.

Create bootable USB drive on Windows

On Windows, there are several software that you can use to create a bootable USB drive from an ISO image. The most powerful and easy tool is Rufus. Go to rufus and download rufus for windows. The good thing about this tool is that It's portable and lightweight. There is no need to install any application.

After downloading, Start Rufus as administrator, and you'll see something similar to this:

rufus interface

Your USB drive will be formatted. Make sure it does not contain any useful data. Follow these steps to create a bootable USB drive from your ISO image:

  • Connect USB drive: Insert your USB drive in the system. Rufus will automatically detect your USB drive. If not, close Rufus and start again.
  • Choose ISO image: Select your ISO image by clicking on 'SELECT' button. Make sure 'Disk or ISO image' option is selected in 'Boot selection',
  • Boot configuration: This is the most cruicial part. Partition scheme and Target system should be configuered as per your system. For newer systems, there is no need to change these options. You need to make sure that your system supports UEFI boot mode before selecting 'GPT'. If your system does not support UEFI boot, then select 'MBR' in 'Partition scheme'.
  • Start: There is no need to change rest of the settings. Change Volume label if you want. After that, click on Start to start the process.

You will see the progress bar of ISO image burning into the USB drive. After a couple of minutes (depending on ISO image size), your bootable USB drive will be ready to use.

Create bootable USB drive on Linux

On Linux, there are plenty of ways to create a bootable USB drive from an ISO image. As compared to other OS, It's very easy on Linux by using dd, one of the most powerful command line utility tool in Linux. Use the below command:

$
sudo dd if=/home/protocolten/image.iso of=/dev/sda1 bs=4M status=progress

Replace '/home/protocolten/image.iso' with path of your ISO image and '/dev/sda1' with your USB drive partition. You can get your USB drive partition identifier using lsblk command in the terminal. Make sure to use the partition identifier instead of the device identifier.

If you are using Linux with GUI, I recommend you to use Balena etcher for creating a bootable USB drive using an ISO image.

Bootable USB drive
shellscribe-admin

Author: Harpreet Singh

Created: Sun 28 May 2023

Updated: 1 year, 9 months ago

POST CATEGORY
  1. Linux
  2. Technology
  3. Windows
Suggested Posts:
CLOUD post image
Setup AWS cross-account RDS MySQL master and slave servers

This article is about AWS RDS master and slave replication. I'll explain how to …

LINUX post image
Digital signature with GPG key to sign & verify messages

Digital signatures are a crucial aspect of secure communication, ensuring message authenticity and integrity. GPG …

LINUX post image
Understand SELinux module and manage security policies in Linux

This article is all about SELinux. It's a security component that protects Linux systems from …

LINUX post image
Define and use environment variables in Linux & Python

This article is about Environment variablesand their uses in Linux and Python as well. …

LINUX post image
Install Python 3.12 on Ubuntu 22 Linux

Choosing the right Python version for your Python application plays an important role in future-proofing …

Sign up or Login to post comment.

Comments (0)