在运行 Windows 7 的 PC 上成功安装了 Ubuntu,但启动菜单中没有选项。这是在安装失败后,GRUB 无法安装。我决定重新安装 Ubuntu,没有收到有关 GRUB 的错误消息,但仍然没有在启动选项中看到它。谢谢
答案1
以某种方式访问你的 Linux 分区,例如 LiveCD
A.进入grub文件夹
/boot/grub
B.编辑grub文件
sudo gedit menu.lst
C. 添加
title Ubuntu
root (hd0,0)
kernel /boot/vmlinuz-2...
initrd /boot/initrd.img...
quiet
[在这种情况下,(hd 0,0) 表示第一个磁盘的第一个分区,因此 (hd 1,0) 将是第二个磁盘、第一个分区等等]
D.保存文件并重启电脑
或者
使用带有 GUI 的 grub 定制器
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer
希望这会有所帮助:)