Para inicializar a partir do Windows Iso e instalá-lo sem usar CD / DVD ou unidade USB, você primeiro precisa criar uma partição PRIMARY com o sistema de arquivos NTFS em seu disco rígido. Eu recomendo o tamanho dessa partição ( digamos X ) um pouco mais do que o tamanho do arquivo Iso do Windows. Depois disso, inicialize em seu Linux Mint, monte o X através da interface gráfica e conheça o ponto de montagem. Se você não sabe como saber o ponto de montagem ou montar manualmente uma partição ou como criar partição PRIMARY, por favor, procure em SuperUser ou Unix e Linux StackExchange . Abra o Terminal e execute os seguintes comandos -
- Mount your iso to a certain location say Desktop by typing
mount -o loop iso_location ~/Desktop
where iso_location is the file location of Windows Iso.- Copy everything from Windows Iso to X by typing
cp -rv ~/Desktop/* mountpoint
where mountpoint is the location of X mounted in /.- Once everything is copied with no errors, type
os-prober
and you should see this kind of output et al.,/dev/sda4:Windows Recovery Environment (loader):Windows1:chain
.- If you see something similar, then type
grub-mkconfig -o grub.cfg_location /dev/sda
where grub.cfg_location is location of Grub configuration file, typically is /boot/grub/grub.cfg and /dev/sda is primary HDD of mine.
Inicialize no Grub e você verá a nova entrada do Windows, digite-a e você poderá instalá-la agora.