为什么在 Windows 启动期间会发生这种情况?我该如何解决?

为什么在 Windows 启动期间会发生这种情况?我该如何解决?

图像

这是在我选择启动 Windows 后出现的 grub。此问题不会造成任何危害,但很烦人。它并不总是在我每次启动 Windows 时发生(始终正常启动),并且在启动 ubuntu(kubuntu)时从未发生过。

我以传统模式启动,屏幕分辨率为 1920x1080,grub 分辨率设置为默认值,并且我有一张 NVIDIA 卡(如果有关系的话,是 quadro k3100m)。

我尝试添加这个/etc/grub.d/15_windows(可能不是最好的主意)

#!/bin/bash
exec tail -n +3 $0
# Be careful not to change the 'exec tail' line above.

menuentry "Windows 10" --class windows10 --class windows --class os {
        savedefault
        insmod part_msdos
        insmod ntfs
        set root='hd0,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  <UUID>
        else
          search --no-floppy --fs-uuid --set=root <UUID>
        fi
    configfile /grub-cfg/windows.cfg
}

并且ntldr /bootmgr它只/grub-cfg/windows.cfg消除了撕裂,但我仍然无法启动到 WINRE(并且 Windows 徽标仍然不总是显示),在我平均重新启动两次之前,幸运的是,这种情况并不每天都发生。

相关内容