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 4,930 times
1 Answers
3
Probably not native. The issue is that a native Windows tool may not fully copy all bootable partitions and sectors onto the burned filesystem media.
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
- 215