红联Linux门户
Linux帮助

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

发布时间:2017-03-04 15:35:28来源:linux网站作者:Oreooo
在windows10中用u盘引导装Ubuntu16.04后,开机界面有windows10的引导项,但是老是启动不了windows10.
 
解决方法:进入Ubuntu系统,打开终端,输入代码:
sudo gedit /etc/grub.d/40_custom   
在打开的文件中,添加以下内容:
menuentry "Win10" {  
set root=(hd0,1)  
ntldr /bootmgr  
boot  
}  
如下图所示:
解決windows10和Ubuntu16.04双系统后windows10不能正常启动
保存退出.
然后在终端输入代码:
sudo update-grub
至此完成win10的重新引导.重启后开机系统的引导项最后多了win10引导,选择即可进入win10系统.
 
本文永久更新地址:http://www.linuxdiyf.com/linux/28891.html