grub2如何引导windows10的安装程序

启动讨论 grub/grub2/syslinux/grub4dos/Lilo
回复
头像
百草谷居士
帖子: 3919
注册时间: 2006-02-10 16:36
系统: Mint21.1/Deepin20.8

grub2如何引导windows10的安装程序

#1

帖子 百草谷居士 » 2017-03-31 11:42

硬盘上有一块320G的空分区没有用,我把它格式化成了ntfs分区,想安装windows10。下载了windows10 x64的安装光盘映像。
没有光驱,也没有U盘,只有已经安装好的ubuntu系统,如何来安装呢?
系统启用了uefi引导和gpt分区
debian 12 / 深度系统 20.9 / Mint 21.3

为何热衷于搞发行版的多,搞应用程序开发的少?Linux最多余的就是各种发行版,最缺的就是应用程序,特别是行业应用程序。
头像
qy117121
论坛版主
帖子: 50538
注册时间: 2007-12-14 13:40
系统: Winbuntu
来自: 志虚国乌由市
联系:

Re: grub2如何引导windows10的安装程序

#2

帖子 qy117121 » 2017-03-31 13:18

viewtopic.php?t=461479
这个帖子看下

win10 iso解压到一个ntfs或者fat32分区下再update-grub是不是就可以了呢
渠月 · QY   
本人只会灌水,不负责回答问题
无聊可以点一下→ http://u.nu/ubuntu

Ubuntu 20.04 快速设置指南,请配合浏浏览器自动翻译使用

邮箱 chuan@ubuntu.org.cn
头像
百草谷居士
帖子: 3919
注册时间: 2006-02-10 16:36
系统: Mint21.1/Deepin20.8

Re: grub2如何引导windows10的安装程序

#3

帖子 百草谷居士 » 2017-03-31 14:41

按照这种办法试了,没有成功。
debian 12 / 深度系统 20.9 / Mint 21.3

为何热衷于搞发行版的多,搞应用程序开发的少?Linux最多余的就是各种发行版,最缺的就是应用程序,特别是行业应用程序。
头像
TeliuTe
论坛版主
帖子: 7668
注册时间: 2007-11-25 13:29
系统: 16/18/20/w7
来自: 新疆博乐
联系:

Re: grub2如何引导windows10的安装程序

#4

帖子 TeliuTe » 2017-03-31 18:50

可以参考一下这一篇: http://teliute.org/fw/win8insu2.html
刚安装了一个win8.1/ubuntu16.04的双系统,grub里面引导win的项是:

代码: 全选

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Boot Manager (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-efi-0092-A11A' {
insmod part_gpt
insmod fat
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 0092-A11A
else
search --no-floppy --fs-uuid --set=root 0092-A11A
fi
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/30_os-prober ###
回复