我是否用 Ubuntu 覆盖了 Win10 引导加载程序

我是否用 Ubuntu 覆盖了 Win10 引导加载程序

我刚刚安装了 Ubuntu,它运行良好。但如果我尝试在引导加载程序中启动 WIN10,引导加载程序就会自行重新启动。

我已为 Ubuntu 引导加载程序选择了分区,之前 WIN10 引导加载程序位于该分区。那么我是否覆盖了 Windows 引导加载程序?

BootInfo PasteBin 链接

sudo fdisk -l
Disk /dev/sda: 465,8 GiB, 500107862016 bytes, 976773168 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: 98397ECD-029E-11E6-9C2F-28D244306994

Device         Start       End   Sectors   Size Type
/dev/sda1         34    262177    262144   128M Microsoft reserved
/dev/sda2     264192 532744191 532480000 253,9G Microsoft basic data
/dev/sda3  532744192 976773119 444028928 211,7G Microsoft basic data

Partition 1 does not start on physical sector boundary.


Disk /dev/sdb: 238,5 GiB, 256060514304 bytes, 500118192 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x7720062f

Device     Boot     Start       End   Sectors  Size Id Type
/dev/sdb1  *         2048   1026047   1024000  500M  7 HPFS/NTFS/exFAT
/dev/sdb2         1026048 307202047 306176000  146G  7 HPFS/NTFS/exFAT
/dev/sdb3       307204094 500117503 192913410   92G  5 Extended
/dev/sdb5       307204096 483981311 176777216 84,3G 83 Linux
/dev/sdb6       483983360 500117503  16134144  7,7G 82 Linux swap / Solaris


sudo blkid
/dev/sda1: PARTLABEL="Microsoft reserved partition" PARTUUID="98397ece-029e-11e6-9c2f-28d244306994"
/dev/sda2: UUID="174014076A235FDC" TYPE="ntfs" PARTLABEL="Backup" PARTUUID="c48f685e-bb1b-43bf-abc9-0ce1896f1811"
/dev/sda3: UUID="18B3C7915C4A1962" TYPE="ntfs" PARTLABEL="Daten" PARTUUID="1939b804-4840-4ada-b864-eb87d4164a0c"
/dev/sdb1: LABEL="System-reserviert" UUID="DA6E17C76E179B79" TYPE="ntfs" PARTUUID="7720062f-01"
/dev/sdb2: UUID="942630B126309668" TYPE="ntfs" PARTUUID="7720062f-02"
/dev/sdb5: UUID="7202b878-632a-488e-ace7-0c731ea761ed" TYPE="ext4" PARTUUID="7720062f-05"
/dev/sdb6: UUID="7b96106a-5bfe-485f-b4bd-85bc5dd91ef7" TYPE="swap" PARTUUID="7720062f-06"

答案1

可能是...

如果您现在看到的第一个启动菜单是 GRUB....是的。

我也有同样的情况。除了 Kubuntu 之外,我还使用 Windows7。之后,我为我的 PC 添加了新的硬盘,并从该驱动器上的 USB 安装了新的 Kubuntu。

在安装过程中,我选择引导加载程序位置 /dev/sda(我相信这是默认位置)

所以现在它启动到 GRUB 并且我在 GRUB 菜单中看到我的 Windows7,我以前在那里有一个 Windows 引导加载程序。

如果这对您来说是一个问题,您可以尝试适用于 Windows 的“EasyBCD”。看看它告诉您什么。

对于 Ubuntu,你可以看看“Grub Customizer”

答案2

问题是,在安装过程中,当您在分区下定义分区时,有一部分会询问“安装引导加载程序的设备”

如果您选择默认(星展银行)然后它将安装windows 引导加载程序上的 grub并删除 Windows 启动管理器。

但是如果你选择安装 ubuntu 的分区(铁sda4)然后它将不会覆盖 Windows 启动管理器,您仍然可以使用它。上次我将 Windows 与 Ubuntu 一起使用时,我意识到了这一点,并进行了配置,因此我的主要引导加载程序是 Windows 引导加载程序,但我仍然可以选择 ubuntu 分区作为选项。

解决方案是尝试使用“sudo update-grub”。机器是否看到了您的 Windows 分区?之后重新启动计算机并尝试访问 Windows 分区。

相关内容