When setting up a bootable USB drive for a UEFI (Unified Extensible Firmware Interface) system, it's essential to format the USB drive with the proper partition scheme and file system. UEFI is the modern replacement for BIOS, and it requires specific configurations for booting. In this post, we will guide you through the steps to format a USB drive for UEFI boot using built-in Windows tools and third-party software.
What You’ll Need:
-
A USB drive (8GB or larger)
-
A computer running Windows (or any OS that supports UEFI)
-
ISO file (for Windows or Linux installation)
-
Disk Management (Windows) or third-party tools like Rufus
Method 1: Using Windows Disk Management Tool
Steps:
-
Insert the USB Drive into your computer.
-
Press Win + X and select Disk Management.
-
In the Disk Management window, locate your USB drive. Make sure it is selected properly.
-
Delete existing partitions on the USB drive by right-clicking each partition and selecting Delete Volume.
Warning: This will erase all data on the USB drive. Backup any important files before proceeding.
-
Right-click the unallocated space and select New Simple Volume.
-
Follow the wizard:
-
Assign a drive letter (if needed).
-
Select FAT32 for the file system (UEFI requires FAT32 for bootable drives).
-
Choose Default Allocation Unit Size.
-
Check Perform a quick format.
-
-
Once the formatting is complete, the USB drive is now formatted with the correct file system for UEFI boot.
Method 2: Using Rufus Tool (Recommended for UEFI and BIOS Systems)
Rufus is a free tool that allows you to create bootable USB drives for both UEFI and legacy BIOS systems. It makes formatting and configuring the USB drive much simpler.
Steps:
-
Download and Install Rufus from here.
-
Insert the USB Drive into your computer.
-
Open Rufus. It should automatically detect your USB drive.
-
In the Partition Scheme section, select GPT partition scheme for UEFI.
-
In the File System section, choose FAT32 (UEFI requires FAT32 for bootable drives).
-
Click SELECT and choose the ISO file for the OS you want to install (Windows or Linux).
-
Check the Quick Format option, and click START.
Note: If you’re creating a multiboot USB or want to make sure the drive is correctly formatted for UEFI, choose GPT partition and FAT32 file system.
Rufus will now format the USB drive and make it bootable for UEFI-based installations.
Method 3: Using Diskpart Command (Advanced)
For more control over partitioning and formatting, you can use Diskpart from the Command Prompt.
Steps:
-
Insert the USB Drive into your computer.
-
Press Win + X and select Command Prompt (Admin) to open an elevated command prompt.
-
Type
diskpart
and press Enter to launch the Diskpart utility. -
Type
list disk
and press Enter. This will list all the disks connected to your computer. -
Identify your USB drive (based on size), and type:
select disk X
Replace X with the number of your USB drive.
-
Type the following to clean the USB drive:
clean
Warning: This will erase everything on the USB drive.
-
Create a new partition:
create partition primary select partition 1 active
-
Format the USB drive with FAT32:
format fs=fat32 quick
-
Assign a drive letter:
assign letter=E
Replace E with your preferred drive letter.
-
Exit Diskpart:
exit
Your USB drive is now formatted with FAT32, and you can copy your bootable ISO onto the USB drive.
Conclusion:
Formatting a USB drive for UEFI boot is essential for modern OS installations, especially when working with Windows 10/11 or Linux distributions. Whether you use Disk Management, Rufus, or Diskpart, following the proper partition and file system setup ensures your USB will be bootable on UEFI-enabled systems.
By using FAT32 and GPT partitioning, your USB drive will be ready to install or recover an OS via UEFI. Be sure to back up your data before proceeding, as these methods will erase your USB drive’s contents.
0 Comments
please be nice.Thank you