天天看点

Windows安装Centos7双系统后Windows启动项消失

原文:

https://www.cnblogs.com/xinglichao/p/9999049.html

https://blog.csdn.net/yingzinanfei/article/details/54862571

方法一:

在Centos7下root登陆

编辑 /boot/grub2/grub.cfg

vim /boot/grub2/grub.cfg

在第一行添加

复制代码

menuentry "Windows10" {
    insmod ntfs
	set root=(hd0,1)
	chainloader +1
}
           

复制代码

其中(hd0, 1)的1代表你的windows10安装所在的盘

修改完毕后保存并退出

然后设置Windows10为默认启动项(在Linux使用情况少时很有必要)

命令行输入:

grub2-set-default "Windows10"
           

查看是否修改为默认是Windows10:

grub2-editenv list
           

如果显示为Windows10则表示成功,reboot重启一下即可

方法二:

windows 7、8/10 安装centos7双系统后,默认会将mbr改写成为grub2,而默认的centos7不识别windows 的ntfs分区,所以启动项没有windows。

可以用3条命令,即可将windows添加到grub2的启动项。

首先保证互联网是通的。

1.su root
2.yum -y install epel-release
3.yum -y install ntfs-3g
4.grub2-mkconfig -o /boot/grub2/grub.cfg
           

3条命令运行成功,重启后,即可看到windows 7(loader)的启动项,即可进入windows。

继续阅读