I want to burn an ISO to a flash drive on Windows. I know that this is possible using software like balenaEtcher, but I was wondering if Windows had a build-in tool.
Asked
Active
Viewed 1,827 times
0
1 Answers
0
Probably not native. The issue is that a native Windows tool may not fully copy all bootable partitions and sectors onto the burned filesystem.
If you run into USB-burned images that don't work on Windows, many people use Rufus.
That is what I used the very first time I installed Manjaro when I only had Windows on my machine to start with.
After that, I always used the Linux command line with this:
sudo dd bs=4M if=my_linux_dl_image.iso of=/dev/sdX conv=fdatasync status=progress
sdXis the USB device found withlsblkmy_linux_dl_image.isois the Linux.isoimage you downloaded
Jesse
- 165
-
Mods and reviewers: Pardon the seemingly off-topic answer, but this question had no answers for a year and a half. Users need some direction to be pointed in. – Jesse Feb 07 '24 at 19:52
dd. An alternative is to create a partition table, filesystem(s) and to copy files. // Depending on what ISO or "ISO" you have, different method(s) will work, thus different tool(s). IMO the linked answer explains a lot. I guess in PowerShell there should be something equivalent todd, but it may be not what you need. – Kamil Maciorowski Aug 11 '22 at 14:30