我的一个朋友使用“与 Windows 8 一起”选项安装了 Ubuntu 16.04,现在系统只能启动到 Ubuntu。
我们怎样才能解决这个问题?
答案1
如果您获得 GRUB 引导加载程序但它没有显示 Windows 8,请尝试更新 grub。终端中的命令:
sudo update-grub
如果您没有获得 GRUB 引导加载程序,请阅读/遵循以下步骤:https://help.ubuntu.com/community/Grub2/Installing
答案2
尝试使用 boot-repair,这是一个可以扫描文件系统上现有操作系统并重建 grub 索引的工具。“默认”修复通常适用于您的问题。
要安装它,请打开一个新终端并输入以下内容:
sudo add-apt-repository ppa:yannubuntu/boot-repair
然后
sudo apt-get update
最后
sudo apt-get install boot-repair
然后您可以启动它sudo boot-repair
并按照说明进行操作。
或者,使用以下连接命令一次性执行所有操作:
sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt update && sudo apt-get install -y boot-repair && boot-repair
答案3
您需要检查 Ubuntu 是否在 grub 配置文件中包含了另一个系统。不要忘记,第二个系统需要安装在“次要”分区内的“逻辑”分区中。