Tabela de partição antes de instalar o Ubuntu no modo UEFI ao lado do Windows 10 [duplicado]

0

ao instalar o Ubuntu no modo UEFI ao lado do Windows 10, não sei como deve ser a tabela de partição. Depois desta imagem:

queopçõesserãoapresentadas?SupondoquenenhumapartiçãoderecuperaçãoparaoWindows,apenasquetodaaunidadeéparticionadaparaoWindows10comGPTeUEFI.

As direções do WindowsDualBoot especificam:

Manual partitioning

    Choose "Manually edit partition table".
    Listed will be your current partitions.
    Select the partition you want to resize and press Enter.
    Select "Size:", press Enter.
    Select Yes, press Enter.
    Type in a new size in gigabytes for your partition, it's recommended you free up at least 10 GB of free space for your Ubuntu install. Press Enter when happy with your changes. It may take some time to apply the changes.

    Create a swap partition of at least your amount of RAM (if you don't know, 8000 MB is a good value).
    Create a partition for your Ubuntu installation.

    Create other partitions if necessary: see DiskSpace
    Select "Finish partitioning and write changes to disk". 

antes de instalar como deve ser o disco de fdisk ou similar? No meu sistema lsblk mostra:

thufir@doge:~$ 
thufir@doge:~$ sudo lsblk 
NAME                  MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda                     8:0    0 74.5G  0 disk 
├─sda1                  8:1    0  487M  0 part /boot
├─sda2                  8:2    0    1K  0 part 
└─sda5                  8:5    0 74.1G  0 part 
  ├─ubuntu--vg-root   252:0    0   72G  0 lvm  /
  └─ubuntu--vg-swap_1 252:1    0    2G  0 lvm  [SWAP]
sr0                    11:0    1 1024M  0 rom  
thufir@doge:~$ 

mas antes de pressionar o botão ao lado do Windows 10, deve parecer com fdisk ou similar? Assumindo UEFI e GPT e que o Windows 10 está na primeira partição.

GPT: link

e UEFI:

link

    
por Thufir 12.12.2016 / 08:08

2 respostas

1

Você pode visitar em WindowsDualBoot para encontrar ajuda sobre o Ubuntu de inicialização dupla.

A tabela de partições será parecida com

    
por Pankaj Gautam 12.12.2016 / 09:32
1

Instale o Ubuntu normalmente em outra unidade, permita que o instalador do grub assuma o Windows One.

Depois de terminar normalmente, você não verá as janelas sendo instaladas, não se preocupe, é comum.

Insira o seguinte comando quando inicializar o seu sistema Ubuntu.

sudo update-grub

Agora, ele tentará listar todos os sistemas operacionais instalados em seu disco rígido.

O texto deve ser o seguinte

Found linux image: /boot/vmlinuz-3.19.0-21-generic
Found initrd image: /boot/initrd.img-3.19.0-21-generic
Found linux image: /boot/vmlinuz-3.19.0-18-generic
Found initrd image: /boot/initrd.img-3.19.0-18-generic
Found linux image: /boot/vmlinuz-3.19.0-16-generic
Found initrd image: /boot/initrd.img-3.19.0-16-generic
Found linux image: /boot/vmlinuz-3.16.0-38-generic
Found initrd image: /boot/initrd.img-3.16.0-38-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
Found Windows 10 (loader) on /dev/sda1
done

Na próxima vez que você estiver inicializando o seu PC, você poderá ver as janelas listadas no seu grub loader

PS: O que eu mencionei é melhor quando você escolhe outra coisa e você instala o Ubuntu em uma unidade formatada separada sem tocar na unidade do Windows.

    
por Newbie 12.12.2016 / 10:26