答案1
在尝试了所有建议后,我终于找到了解决方案。我将其发布在这里,希望它能对某些人有所帮助。
尝试了几次之后,我确实以不同的顺序添加了每个分区,但问题始终出在分区 #1 上。
因此我认为可能是磁盘中某个区域有故障,这实际上就是问题所在。
所以我创建了一个第一个空分区先是几兆字节,然后是其他所有字节。成功了。
答案2
您需要确保在该屏幕上选择 /boot/efi 所在的分区,并要求将其用作系统分区(我认为是这样写的)。或者,在开始安装之前在终端中,如果未按所述成功,请使用 gdisk 将类型设置为 ef00,如下所示。
root@zeus-H370M-DS3H:/home/zeus# gdisk /dev/sda
GPT fdisk (gdisk) version 1.0.5
Partition table scan:
MBR: not present
BSD: not present
APM: not present
GPT: not present
Creating new GPT entries in memory.
Command (? for help): t
Partition number (1-128, default 1): 1
First sector (34-234441614, default = 2048) or {+-}size{KMGTP}: 40
Last sector (2048-234441614, default = 234441614) or {+-}size{KMGTP}: 200M
Current type is 8300 (Linux filesystem)
Hex code or GUID (L to show codes, Enter = 8300): ef00
Changed type of partition to 'EFI system partition'
Command (? for help): w
Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
PARTITIONS!!
Do you want to proceed? (Y/N): y
OK; writing new GUID partition table (GPT) to /dev/sda.
The operation has completed successfully.
您可以使用数字 4 来进行 U 盘设置,并检查它确实完成了。
root@zeus-H370M-DS3H:~# fdisk -l /dev/sda | grep sda1
/dev/sda1 40 409639 409600 200M EFI System
您需要sudo
在我使用的命令前面使用该命令来以 root 用户身份执行此操作,就像我一样。