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

时间:2024-04-02 13:38:40

在windows10中用u盘引导装Ubuntu16.04后,开机界面有windows10的引导项,但是老是启动不了windows10.


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

[html] view plain copy
  1. sudo gedit /etc/grub.d/40_custom   


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

[html] view plain copy
  1. menuentry "Win10" {  
  2. set root=(hd0,1)  
  3. ntldr /bootmgr  
  4. boot  
  5. }  

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

保存退出

然后在终端输入代码:

[html] view plain copy
  1. sudo update-grub  

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


这个教程完美解决了我的问题,转自:

http://blog.csdn.net/oreooo/article/details/60141864