在 UEFI 模式下安装 Ubuntu 和 Windows 10 之前的分区表

在 UEFI 模式下安装 Ubuntu 和 Windows 10 之前的分区表

在 UEFI 模式下安装 Ubuntu 和 Windows 10 时,我不知道分区表应该是什么样子。在此图像之后:

在此处输入图片描述

会出现什么选项?假设 Windows 没有恢复分区,只是整个驱动器使用 GPT 和 UEFI 为 Windows 10 进行分区。

WindowsDualBoot 方向指定:

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". 

在安装之前,磁盘应该是什么样子fdisk或类似?我的系统lsblk显示:

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:~$ 

但在我按下安装按钮之前旁边Windows 10,什么应该它看起来像fdisk或类似?假设 UEFI 和 GPT 并且 Windows 10 位于第一个分区上。

通用服务协议(GPT): https://en.wikipedia.org/wiki/GUID_Partition_Table

和 UEFI:

https://help.ubuntu.com/community/UEFI

答案1

您可以访问Windows双启动查找有关双启动 Ubuntu 的帮助。

分区表如下所示

分区表的屏幕截图

答案2

在另一个驱动器上正常安装 ubuntu,允许 grub 安装程序接管 windows 安装程序。

正常完成后,您将看不到正在安装的窗口,不用担心,这是很常见的。

启动 ubuntu 系统后输入以下命令。

sudo update-grub

它现在将尝试列出硬盘上所有已安装的操作系统。

文本应如下

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

下次启动电脑时,你将能够看到 grub 加载程序中列出的窗口

PS:我提到的内容最适用于您选择其他内容并在单独的格式化驱动器上安装 ubuntu 而不触及 Windows 驱动器的情况。

相关内容