我刚刚从 Lucid 升级到 12.04,现在我无法从硬盘启动,但收到以下错误消息:
未找到符号‘grub-xpuls’
...然后它要我做一些事情来拯救 grub,但我不是专家,我不知道那可能是什么。
请帮忙?我希望我能更具体一点,不要太菜鸟,但不幸的是...
答案1
为什么不直接重新安装 grub 或获取 grub-update。只需尝试使用 live CD 并转到终端并输入以下命令来更新 grub:
Mount the partition containing your Linux: mount $partition /mnt/sda2
Reinstall grub: grub-install --root-directory=/mnt/sda2 $device
Backup the Grub: cd /boot/grub ; cp grub.cfg grub.cfg#1 ; cp menu.lst menu.lst#1 //if it's not the live cd boot directory
Update the grub: sudo update-grub
您已经完成。