我已经启动了我的服务器,出现一些 GRUB 错误,我将错误粘贴在下面。
错误代码:-
GNU GRUB version 0.97(502k Lower/496556K upper memory)
[Minimal BASH-like line editing is supported.
For the first word, TAB lists possible command completions. Anywhere else TAB lists the possible completions of a device/filename]
grub>
笔记 : -
我已尝试按照此步骤恢复 GRUB。
GRUB 重新安装在主引导记录上:
从安装启动介质启动系统。
linux rescue
在安装启动提示符下输入以进入救援环境。键入
chroot /mnt/sysimage
以挂载根分区。键入
/sbin/grub-install /dev/hda
以重新安装 GRUB 引导加载程序,其中 /dev/hda 是引导分区。重新启动系统。
我又遇到了同样的错误。我该如何让系统再次启动?
答案1
您的图片显示了 GRUB 安装,它显然工作正常。但是它没有配置菜单,因此您只能使用命令行。
从将使用 GRUB 安装启动的操作系统安装合适的配置是最简单的方法。这意味着您必须第一次手动输入命令。这是完全可行的,因为 GRUB 具有可用的完成功能。
通常您只需要在 GRUB 提示符下输入三个命令:
linux /path/to/kernel/image root=/path/to/root/device ro
initrd /path/to/initrd/image
boot
映像可能位于(hd0,0)/boot
或中(hd0,0)/
,但(hd0,1)/
也要检查。内核映像通常有一个以 开头的名称vmlinuz
,而 initrd 则以 开头initrd
,完成是您的助手。
答案2
本页包含有关如何从 grub> 提示符进行配置的附加步骤
https://www.linux.com/tutorials/how-rescue-non-booting-grub-2-linux/