I know it might be weird, but I'm trying to boot a Windows version on dual boot in Linux for gaming. I followed these steps:
- Download a version of Windows;
- Copy the files inside the *.iso to the mounted USB stick with cp command;
- Restart the machine;
- Change BIOS to recognize either USB CD/DVD or USB Hardrive as first boot in priority.
The system does not recognize the stick. I suspect it might be due to permissions issues.
Thank you in advance.
cp
will copy the file to the file system on your thumb-drive, where it can be used by a booted system, but it won't be bootable unless the thumb-drive was already setup & bootable (and it'll boot that prior bootable system). I usedd
to expand the ISO to a thumb-drive myself; butdd
(data dump) doesn't protect users from themselves and safer programs are around that do the job. – guiverc Sep 02 '19 at 00:55