Skip to content
Home » How to Make A Bootable USB Windows 10 on Linux?

How to Make A Bootable USB Windows 10 on Linux?

Making a bootable USB of Windows 10 on a Linux operating system can be accomplished through several methods. One way is to use the terminal and the ‘dd’ command. However, this method requires a good understanding of Linux commands and precautions should be taken to ensure that the correct device is selected.

Another more user-friendly option is to use third-party software such as WoeUSB or UNetbootin. Both of these tools offer easy-to-use graphical interfaces that allow users to select the Windows 10 ISO file and USB drive to create the bootable USB.

Regardless of the method used, it is crucial to ensure that the USB is properly formatted and that the Windows 10 ISO file is compatible with the system architecture (32-bit or 64-bit). This can be verified by checking the file properties or by using built-in Linux commands such as ‘file’ or ‘arch’.

Overall, creating a bootable USB of Windows 10 on Linux requires some technical knowledge and caution to avoid any data loss or system errors. However, there are easy-to-use tools available that simplify the process and mitigate potential risks.

How to create a bootable Windows 10 USB in Linux?

How do I create a bootable Windows USB in Linux?

To create a bootable Windows USB in Linux, you can use a tool called `WoeUSB`. To install `WoeUSB`, follow these steps:

1. Open a terminal in your Linux distribution.
2. Add the `universe` repository by running the command `sudo add-apt-repository universe`.
3. Install `WoeUSB` by running the command `sudo apt install woeusb`.

Once `WoeUSB` is installed, follow these steps to create a bootable Windows USB:

1. Insert the USB drive you want to use for Windows installation into your computer.
2. Open `WoeUSB` from the Applications menu or by running the command `woeusbgui` in the terminal.
3. In the `WoeUSB` tool, select the Windows ISO image you want to use for installation.
4. Select the USB drive you want to create the bootable installation media on.
5. Click "Install" and wait for `WoeUSB` to create the bootable USB drive.

Once the process is complete, you will have a bootable Windows USB in Linux that you can use to install Windows on your computer.

How to create a Windows 10 bootable USB on Ubuntu?

Creating a Windows 10 bootable USB on Ubuntu can be done using the built-in tool known as WoeUSB. This tool can be installed via the command line or through Software Center on Ubuntu. Once installed, open the WoeUSB app and select the Windows 10 ISO file from your computer. Choose the USB drive you want to use as the bootable media and click "Install." This will create a bootable USB of Windows 10 that can be used to install the operating system on a computer. It is important to note that the USB drive should have at least 8GB of storage space and should be formatted to FAT32 or NTFS before creating the bootable drive.

How to make a UEFI bootable Windows USB on Linux?

To make a UEFI bootable Windows USB on Linux, you will need to follow a series of steps. First, you must format your USB drive to the FAT32 file system. Next, you will need to download the Windows ISO image from the Microsoft website. Once you have downloaded the ISO image, you will need to use a tool like WoeUSB or Rufus to create a bootable USB drive.

If you choose WoeUSB, you can install it via the command line with the following command:

"`
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install woeusb
"`

Then, open WoeUSB and select your Windows ISO file, as well as the USB drive you want to make bootable. Make sure to select the appropriate settings for UEFI boot mode. Finally, click "Install" and wait for the process to complete.

If you choose Rufus, you can download it from their website and run it on Linux with Wine. Once Rufus is open, select your Windows ISO file and USB drive. Make sure to select the appropriate settings for UEFI boot mode. Then, click "Start" and wait for the process to complete.

It’s important to note that creating a UEFI bootable Windows USB on Linux can sometimes be tricky, and may not work on all systems. It’s recommended to do some research on your specific system before proceeding.

Can I make bootable USB from Linux?

Yes, it is possible to make a bootable USB from Linux. One option to do this is by using the ‘dd’ (data duplicator) command. First, plug in the USB drive to the Linux machine and check its device name using the ‘lsblk’ command. Next, unmount the USB drive using the ‘umount’ command. Then, use the ‘dd’ command to write the ISO file to the USB drive. For example, the command could be:

`sudo dd if=/path/to/iso/file.iso of=/dev/sdx bs=4M status=progress && sync`

Here, ‘if’ stands for input file (the path to the ISO file), ‘of’ stands for output file (the device name of the USB drive), ‘bs’ stands for block size, and ‘status=progress’ shows the progress of the write operation. The ‘sync’ command ensures that all data is written to the USB drive before it is unplugged. Note that the device name (in this example, ‘sdx’) may differ on your machine.

How do I create a bootable Windows 10 USB drive?

Creating a bootable Windows 10 USB drive is a straightforward process that involves the use of the official Media Creation Tool provided by Microsoft. This tool can be downloaded from the Microsoft website and it allows you to create a bootable USB drive that can be used to install Windows 10 on any compatible computer.

The first step in creating a bootable Windows 10 USB drive is to download the Media Creation Tool from the Microsoft website and run it on your computer. Once the tool is open, you will be prompted to select the type of installation media you want to create – in this case, you should choose “Create installation media (USB flash drive, DVD or ISO file) for another PC” and click the “Next” button.

Next, you will need to select the language, edition, and architecture (32-bit or 64-bit) of the Windows 10 installation files you want to download. Once you have made these selections, click on the “Next” button again to proceed.

In the next step, you will be prompted to select the type of media you want to use for the installation – in this case, choose “USB flash drive” and click the “Next” button. Make sure to insert your USB drive into the computer before proceeding.

The tool will now begin downloading the required installation files and copying them to the USB drive. This process may take some time, depending on the speed of your internet connection and the size of the files being downloaded.

Once the process is complete, you will have successfully created a bootable Windows 10 USB drive that can be used to install Windows 10 on any compatible computer. Simply insert the USB drive into the computer you want to install Windows 10 on, boot from the USB drive, and follow the on-screen instructions to complete the installation process.

Is there a Rufus for Linux?

Yes, there is an open-source Rufus equivalent for Linux called "Etcher". Etcher is a graphical USB image writer that supports various file formats, including IMG, ISO, and DD. It offers a simple and user-friendly interface with easy-to-follow steps for creating bootable USBs containing various operating systems, from Linux and Windows to Raspberry Pi images. Etcher is available for Windows, macOS, and Linux and is widely used among developers, system administrators, and other IT professionals in need of creating bootable USB drives.