小编Mar*_*dru的帖子

使用 ubuntu 18.04 在没有 USB 的情况下安装 Windows 10:这不是可引导磁盘错误

我在谷歌上找到了一种无需 USB/DVD 即可安装 Windows 10 的方法,方法是将安装程序复制到第二个分区并使其可启动。我已经设法做到了这一点并更新了我的 grub,但是当我尝试启动到新分区时出现此错误:This is not a bootable disk please insert a bootable floppy.

有没有办法使用这种方式安装Windows 10,否则我应该放弃?请注意,我目前无法购买 USB。

这是我用于 Windows 设置的 grub 菜单项:

menuentry 'Windows Recovery Environment (on /dev/sda4)' --class windows --class os $menuentry_id_option 'osprober-chain-592C85254E2CD0B7' {
    insmod part_msdos
    insmod ntfs
    set root='hd0,msdos4'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos4 --hint-efi=hd0,msdos4 --hint-baremetal=ahci0,msdos4  592C85254E2CD0B7
    else
      search --no-floppy --fs-uuid --set=root 592C85254E2CD0B7
    fi
    parttool ${root} hidden-
    drivemap -s (hd0) ${root}
    chainloader +1
}
Run Code Online (Sandbox Code Playgroud)

partitioning boot grub2 dual-boot

4
推荐指数
1
解决办法
8129
查看次数

标签 统计

boot ×1

dual-boot ×1

grub2 ×1

partitioning ×1