您的位置:首页 > 其它

解決windows10和Ubuntu16.04双系统后windows10不能正常启动

2017-10-22 16:03 260 查看
在windows10中用u盘引导装Ubuntu16.04后,开机界面有windows10的引导项,但是老是启动不了windows10.

解决方法:进入Ubuntu系统,打开终端,输入代码:

[html] view
plain copy

sudo gedit /etc/grub.d/40_custom   

在打开的文件中,添加以下内容:

[html] view
plain copy

menuentry "Win10" {  

set root=(hd0,1)  

ntldr /bootmgr  

boot  

}  



保存退出

然后在终端输入代码:

[html] view
plain copy

sudo update-grub  

至此完成win10的重新引导.重启后开机系统的引导项最后多了win10引导,选择即可进入win10系统.

这个教程完美解决了我的问题,转自:
http://blog.csdn.net/oreooo/article/details/60141864
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐