How to make a bootable pendrive

 Creating a bootable USB drive is a useful way to install or repair an operating system on a computer. Here’s a step-by-step guide to make a bootable USB drive:

What You’ll Need:

1. USB Drive (at least 8GB):Make sure to back up any files on the USB, as this process will erase all data.

2. ISO File of the Operating System: Download the ISO file for the OS you want to install (e.g., Windows, Linux).

3. Software to Make the USB Bootable: There are a few free tools you can use, like Rufus (for Windows) or Etcher (for Windows, macOS, and Linux).



Method 1: Using Rufus (for Windows)


1. Download and Install Rufus:

   - Go to the Rufus website and download the latest version.

   - Run Rufus (it doesn’t need to be installed since it's a standalone application).


2. Insert Your USB Drive:

   - Plug your USB drive into your computer.

   - Rufus will automatically detect it.


3. Select the ISO File:

   - Click on the “Select” button in Rufus.

   - Browse to the location where you saved the OS ISO file and select it.


4. Choose Partition Scheme:

   - For most modern computers, choose **GPT** for UEFI. For older systems, choose **MBR** for BIOS.

   - Rufus may auto-select this based on the ISO, but check it aligns with your system requirements.


5. Set File System:

   - Leave the File System as **FAT32** (default).


6. Start the Process:

   - Click **Start** to begin creating the bootable USB.

   - Rufus will prompt you to confirm, as it will delete all data on the USB drive. Confirm to proceed.


7. Wait for Completion:

   - Rufus will now create the bootable USB. It might take a few minutes, so wait until it says “Ready.”

   - Once complete, safely eject the USB.



Method 2: Using Command Prompt (for Windows)


If you prefer not to use any software, you can create a bootable USB using Command Prompt. Here’s how:


1. Open Command Prompt as Administrator:

   - Press **Win + X** and choose **Command Prompt (Admin)**.


2. Run Diskpart Command:

   - Type `diskpart` and press Enter.


3. Select Your USB Drive:

   - Type `list disk` and press Enter to display connected drives.

   - Identify your USB drive from the list (e.g., `Disk 1`). Ensure you choose the correct disk!

   - Type `select disk X` (replace "X" with your USB’s disk number).


4. Format the USB Drive:

   - Type `clean` and press Enter to erase the USB.

   - Type `create partition primary` and press Enter.

   - Type `select partition 1` and press Enter.

   - Type `active` and press Enter.

   - Type `format fs=fat32 quick` and press Enter.

   - Type `assign` and press Enter to assign a drive letter.


5. Copy the ISO Files to USB:

   - Mount the ISO file by double-clicking it in Windows 10 or later.

   - Copy all files from the ISO to the USB drive (use drag-and-drop).


6. Eject the USB:

   - Once copying is complete, safely eject the USB drive.


---


Method 3: Using Balena Etcher (for Windows, macOS, and Linux)


1. Download and Install Balena Etcher:

   - Visit the [Balena Etcher website](https://www.balena.io/etcher/) and download the latest version for your OS.

   

2. Launch Balena Etcher:

   - Open Etcher, and it will present a simple three-step process.


3. Select Your ISO File:

   - Click **Flash from file**, then select your ISO file.


4. Choose the USB Drive:

   - Select your USB drive from the list of available devices.


5. Flash the Drive:

   - Click **Flash!** to begin creating the bootable USB.

   - Wait for the process to complete, then safely eject your USB.




Once you’ve created a bootable USB, you can use it to install the OS on a computer:


1. Insert the USB drive into the computer.

2. Restart the computer and enter the **Boot Menu** (usually by pressing **F12**, **Esc**, **F10**, or **Delete** during startup).

3. Select the USB drive as the boot device.

4. Follow the on-screen instructions to install or repair your OS.


---


Creating a bootable USB drive is a straightforward process, and with these methods, you’ll have a reliable tool for installing operating systems whenever you need!

Comments