Ubuntu 16.04:grub-efi-amd64-signed 无法安装到 /target/ 错误

Ubuntu 16.04:grub-efi-amd64-signed 无法安装到 /target/ 错误

我有一台安装了 Windows-10 操作系统的 Dell Inspiron 5567 笔记本电脑(i-7,8GB)。我正尝试在 Windows10 上安装 ubuntu 16.04 作为双启动操作系统。我还禁用了快速启动和安全启动选项。我在安装 Ubuntu 16.04 时遇到此错误:

grub-efi-amd64-signed 无法安装到 /target/。如果没有 GRUB 引导加载程序,安装的系统将无法启动

目标分区是/dev/sda1。

我创建了三个分区:

20GB-ext4- Root mounted
18.9GB-ext4- /home
4GB Swap area

日志文件的启动板链接https://bugs.launchpad.net/ubuntu/+source/grub-installer/+bug/1703167

启动修复的 Pastebin 链接https://pastebin.com/raw/u4LSP0V4

sudo fdisk -l 的输出

Disk /dev/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: F87D48DF-F3FF-429E-8F0B-558F81712A60

Device          Start        End    Sectors   Size Type
/dev/sda1        2048    1026047    1024000   500M EFI System
/dev/sda2     1026048    1288191     262144   128M Microsoft reserved
/dev/sda3     1288192 1843265535 1841977344 878.3G Microsoft basic data
/dev/sda4  1927151616 1928073215     921600   450M Windows recovery environment
/dev/sda5  1928073216 1951281151   23207936  11.1G Windows recovery environment
/dev/sda6  1951281152 1953523711    2242560   1.1G Windows recovery environment
/dev/sda7  1843265536 1851078655    7813120   3.7G Linux swap
/dev/sda8  1851078656 1890140159   39061504  18.6G Linux filesystem
/dev/sda9  1890140160 1927151615   37011456  17.7G Linux filesystem

Partition table entries are not in disk order.

sudo parted -l 的输出

Model: ATA TOSHIBA MQ01ABD1 (scsi)
Disk /dev/sda: 1000GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags: 

Number  Start   End     Size    File system     Name                          Flags
 1      1049kB  525MB   524MB   fat32           EFI system partition          boot, esp
 2      525MB   660MB   134MB                   Microsoft reserved partition  msftres
 3      660MB   944GB   943GB   ntfs            Basic data partition          msftdata
 7      944GB   948GB   4000MB  linux-swap(v1)
 8      948GB   968GB   20.0GB  ext4
 9      968GB   987GB   18.9GB  ext4
 4      987GB   987GB   472MB   ntfs                                          hidden, diag
 5      987GB   999GB   11.9GB  ntfs                                          hidden, diag
 6      999GB   1000GB  1148MB  ntfs                                          hidden, diag


Model: SRT USB (scsi)
Disk /dev/sdb: 32.5GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags: 

Number  Start   End     Size    Type     File system  Flags
1      1049kB  32.5GB  32.5GB  primary  fat32        boot, lba

请指导我如何解决这个问题。

答案1

EFI 系统分区已损坏。我按照以下步骤纠正了此错误:

在 Windows 上,我使用 DISKPART 为 EFI 系统分区分配一个字母。启动 DISKPART,然后键入LIST DISK查找磁盘,然后键入SELECT DISK <N>(驱动器号在哪里)。按照相同的步骤找到正确的分区(即LIST PARTITION后跟SELECT PARTITION <N>),然后只需键入ASSIGN LETTER = X让 Windows 将分区安装到字母 X。

然后以管理员权限打开 CMD。运行CHKDSK X: /f /r

然后,我再次尝试安装 Ubuntu,并且安装成功!

答案2

我在许多计算机上都看到过这种情况,实际上不是 grub 安装失败,而是更新 grub 导致第一个配置文件失败。
问题是 30_uefi-firmware 中的 if/then 语句出现错误。

最简单的修复方法是在错误发生后,选择安装程序菜单底部的命令行提示符。然后使用 nano 编辑文件 /etc/grub.d/30_uefi-firmware。
我已将其更改为:

gettext_printf "Adding boot menu entry for EFI firmware configuration\n" >&2
cat << EOF
menuentry 'uefi-firmware' {
fwsetup
}
EOF

编辑后重新运行安装 grub。
注意:在某些系统上,安装程序需要暂时注释掉打印命令

相关内容