Você pode instalar o Windows como um dual-boot em um computador com apenas Linux instalado?

0

Eu estava pensando em comprar o Galago Pro 13 "do System76 quando for lançado, eu acho que seria um ótimo laptop Linux. No entanto, no futuro, eu poderia me ver potencialmente precisando usar o Windows 10 ( não WiNE ) em um dual-boot com o Ubuntu.Isso é possível?

    
por anonymous 20.03.2017 / 11:52

1 resposta

1

Isso é possível?

Sim. Veja esta excelente resposta em Ask Ubuntu from evgeny :

Here's the general outline:

  1. Make space for Windows
  2. Install Windows
  3. Mount the /boot direcory or partition
  4. Install the bootloader (GRUB)

Step One – Make space for Windows

Open up GParted, and make sure that you have at least 20 GB available for Windows 7, either as a partition you can remove, or as unpartitioned space. If it's a partition, remove it from GRUB to make sure it doesn't break your Ubuntu install — GParted will complain if anything bad is about to happen.

Make note of current /boot device. If that doesn't show up there, make note of the / device. The device name is something like sda5.

Step Two – Install Windows

Install Windows 7 into the space you just made

Step Three – Mount /boot

Note: Instead of mounting the boot directory or partition from the installation in the live media environment you can specify the path with the --boot-directory parameter for grub-install, more information on the manpage.

     

Carregue seu Live CD do Ubuntu e execute esses comandos.

     
  • Se você NÃO tiver uma partição /boot separada:

    sudo mount /dev/DEVICENAME_FROM_STEP_ONE /mnt
    sudo rm -rf /boot    # Careful here, make sure YOU ARE USING THE LIVE CD. I tried it, it works.
    sudo ln -s /mnt/boot /boot
    
  •   
  • Se você tiver uma partição SEPARATE /boot :

    sudo mount /dev/DEVICENAME_FROM_STEP_ONE /boot
    
  •   

Passo Quatro - Instale o bootloader

     

Note: These instructions were initially written for Windows 7 and BIOS booting computers. If you have UEFI and Windows 8 and above you probably need to replace grub-pc with grub-efi-amd64 in sudo apt-get install grub-pc.

     

Continue com esses comandos:

sudo apt-get update
sudo apt-get install grub-pc
sudo grub-install /dev/sda     # NOTE THAT THERE IS NO DIGIT
sudo umount /boot
     

e reinicie. Deve funcionar bem e inicializar os dois sistemas.

    
por 20.03.2017 / 13:57