How to Make a Bootable Pendrive (CMD, Rufus, BalenaEtcher)
📝 Introduction
A bootable USB pendrive is essential for installing operating systems like Windows or Linux, recovering systems, or running live OS environments. In this post, you'll learn three easy ways to create a bootable USB:
-
Using Command Prompt (CMD)
-
Using Rufus (Windows)
-
Using BalenaEtcher (Windows, macOS, Linux)
🧰 What You'll Need:
-
A USB pendrive (8GB or larger)
-
ISO file of the OS (Windows/Linux)
-
A computer
-
Optional tools: Rufus or BalenaEtcher
💻 Method 1: Using Command Prompt (CMD)
🔹 Steps:
-
Insert the USB drive into your computer.
-
Open Command Prompt as Administrator.
-
Type the following:
diskpart
-
List disks:
list disk
-
Identify your USB (e.g.,
Disk 1
) and select it:select disk 1
-
Clean the USB:
clean
-
Create a new partition:
create partition primary select partition 1 active format fs=ntfs quick assign
-
Mount your ISO file or insert your OS DVD.
-
Copy ISO contents to USB:
xcopy D:\* E:\ /E /F /H
Replace
D:
with your ISO/DVD drive andE:
with your USB.
Now your USB is bootable.
🔧 Method 2: Using Rufus (Windows Only)
🔹 Steps:
-
Download Rufus from https://rufus.ie.
-
Open the tool (no install needed).
-
Insert your USB drive.
-
In Rufus:
-
Device: Choose your USB.
-
Boot Selection: Click "SELECT" and browse your ISO file.
-
Partition Scheme:
-
GPT + FAT32 for UEFI systems.
-
MBR + NTFS for BIOS systems.
-
-
Volume label: Optional.
-
-
Click START.
-
Confirm formatting, and let Rufus do the work.
Once complete, your bootable USB is ready.
🧪 Method 3: Using BalenaEtcher (Windows/macOS/Linux)
🔹 Steps:
-
Download BalenaEtcher from https://www.balena.io/etcher/.
-
Install and launch the app.
-
Insert your USB drive.
-
In Etcher:
-
Select Image: Choose your ISO file.
-
Select Target: Your USB drive.
-
Click Flash!
-
-
Wait for flashing and auto-verification to finish.
That’s it! Your bootable USB is ready on any platform.
💡 Tips:
-
Back up your USB before starting—this process will erase everything.
-
Use GPT + FAT32 for modern PCs (UEFI), MBR + NTFS for older systems.
-
If it doesn't boot, check BIOS/UEFI settings and set USB as the first boot device.
🎯 Conclusion
Whether you’re using CMD for manual control, Rufus for speed and simplicity, or BalenaEtcher for cross-platform compatibility, creating a bootable pendrive is easy and essential for tech users. Choose the method that suits your skill level and system.
0 Comments
please be nice.Thank you