在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

相关文章:

  • 2021-11-12
  • 2022-01-17
  • 2021-08-22
  • 2021-11-19
  • 2021-12-04
  • 2021-11-27
猜你喜欢
  • 2021-06-22
  • 2021-05-16
  • 2021-06-16
  • 2022-01-21
  • 2022-02-14
  • 2021-04-09
相关资源
相似解决方案