Como posso criar um dispositivo USB inicializável do Windows usando o Ubuntu?

2

Eu apaguei todo o disco rígido e estou tentando instalar um dual boot do Ubuntu e do Windows.

  1. Primeiro, fiz uma unidade USB inicializável usando um arquivo .iso do Ubuntu. Eu defino a ordem de inicialização no BIOS corretamente. Depois de reiniciar minha máquina, eu corretamente vejo as etapas de configuração para o Ubuntu. Eu instalei o Ubuntu com sucesso.
  2. Na segunda etapa, fiz outra unidade USB inicializável usando um arquivo .iso do Windows 7. Eu defino a ordem de inicialização corretamente. Quando reiniciei minha máquina, não consegui ver nada, mas Sistema operacional ausente . Então o Ubuntu começa a inicializar e carregar.

Alguém pode me ajudar aqui para resolver este problema de instalação do Windows?

    
por Vishal 30.05.2017 / 09:56

3 respostas

1

Embora ainda não tenha o Windows 7 instalado, você também pode criar uma unidade flash USB inicializável para instalar o Windows 7 do Ubuntu usando uma unidade flash USB de 4 GB. O WinUSB é uma ferramenta para criar uma unidade flash USB inicializável usada para instalar o Windows. A inicialização UEFI nativa é suportada para imagens do Windows 7 e posteriores (limitada ao sistema de arquivos FAT como o dispositivo de destino).

Para instalar o WinUSB no Ubuntu 14.04 / 16.04 / 16.10 / 17.04:

sudo add-apt-repository ppa:nilarimogard/webupd8 
sudo apt update  
sudo apt install winusb  

Para instalar o WoeUSB (bifurcação atualizada do projeto WinUSB) no Ubuntu 14.04 / 16.04 / 17.10 / 18.04 e posterior:

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

Isso instalará a interface gráfica WinUSB e a ferramenta de linha de comando WinUSB. A GUI do WinUSB é muito mais fácil de usar que a ferramenta de linha de comando do WinUSB.

Instalar o WinUSB no Ubuntu carregado por EFI irá desinstalar os pacotes do grub-efi para instalar os pacotes do grub-pc, portanto, antes de reinicializar, execute os seguintes comandos para reparar o grub:

sudo update-grub
sudo grub-install /dev/sdX # replace X with the letter of the partition where grub is located
sudo update-grub
sudo reboot
    
por 30.05.2017 / 12:33
1

De acordo com onetransistor.blogspot.co.uk

Before starting, let's mention that there are two types of boot methods. There is the MBR code type where the bootable executable is stored in a reserved section at the beginning of the storage device. And there is the EFI type, where the boot loader executable file is stored at a standard path in an FAT32 filesystem.

You must decide in advance what you will use. There are some variables for each boot type. If you have no idea what to use, the most common setup that works with unmodified Windows sources, is msdos partition table with fat32 filesystem and flag the partition with boot. In this way you will get both an MBR and UEFI bootable drive. USB Boot flags MBR/UEFI mods/gpt

  1. Format USB drive

You must re-create the partition table by going to the Device menu then select Create Partition Table. Choose msdos (or gpt if you want an UEFI only bootable drive) and click Apply.

  1. Copy Windows files
  2. Make it bootable

If you used NTFS filesystem and MSDOS table, only method A is available. If you used FAT32 and MSDOS table, you can apply method A, B or both. If you used GPT partition table, only method B should be followed.

  • A. MBR bootable

GRUB will be used for that. Open a Terminal and run:

sudo grub-install --target=i386-pc --boot-directory="/media/<username>/<drive_label>/boot" /dev/sdX

Now, create a text file and write the following in it:

default=1  
timeout=15
color_normal=light-cyan/dark-gray
menu_color_normal=black/light-cyan
menu_color_highlight=white/black

menuentry "Start Windows Installation" {
    insmod ntfs
    insmod search_label
    search --no-floppy --set=root --label <USB_drive_label> --hint hd0,msdos1
    ntldr /bootmgr
    boot
}

menuentry "Boot from the first hard drive" {
    insmod ntfs
    insmod chain
    insmod part_msdos
    insmod part_gpt
    set root=(hd1)
    chainloader +1
    boot
}

That's it. The USB drive is now bootable from BIOS and can be used to install Windows on your PC. The first time you boot from it in MBR BIOS or CSM mode select Start Windows Installation.

  • B. UEFI bootable

Not all Windows versions are supported. Windows 7 on 64 bits, Windows 8 and newer versions should work.

After the copy process is finished, look in the USB root folder for the efi/boot directory. If there's a bootx64.efi or bootia32.efi file there, then you're done. You can boot from your USB in UEFI mode.

If the OS you are making a bootable USB for is Windows 7, browse the efi/microsoft folder and copy the entire boot folder from this path one level up in the efi folder. Merge folders if boot already exists.

Here is what to do if you don't have the bootx64.efi file in efi/boot folder. Browse the mounted Windows ISO image into the sources folder. Open install.wim (or install.esd) with your archive manager (you will need 7z installed). Go to the path ./1/Windows/Boot/EFI and extract the file bootmgfw.efi anywhere you want. Rename it to bootx64.efi and put it on the USB drive, in the efi/boot folder. If you can't find bootmgfw.efi in install.wim then you probably have a 32 bit Windows ISO or other types of images (recovery disks, upgrade versions).

You can now boot from your USB in UEFI mode.

Eu cito o site original para confiabilidade , Mas o site é muito melhor em estilo e detalhes, então use-o a menos que você não force.

    
por 30.05.2017 / 10:09
0
  1. Se estiver usando rufus:

    • Verifique se o esquema de partições é MBR (para BIOS ou UEFI)
    • sistema de arquivos NTFS

Como mostrado abaixo

  • Provavelmente, o melhor para criar um disco inicializável do Windows (7) é usar a ferramenta Microsoft - Ferramenta de Download do Windows USB / DVD
  • ou diretamente do codeplex: Ferramenta de download do Windows USB / DVD

    A segunda opção não tem problemas, já que a configuração não precisa de configurações extras como no rufus.

        
    por 30.05.2017 / 12:23