卡在 GNU GRUB 屏幕上

卡在 GNU GRUB 屏幕上

我买了一台装有 Ubuntu 的电脑,并尝试通过 USB 安装 Windows 10(我不知道为什么它不能通过 USB 工作,加载文件时出错)所以我进入了 BIOS 并取消选择安全启动,但我意外禁用了传统启动...现在我卡在这个屏幕上(怎么回事?键盘不工作)

有没有不打开机箱就能解决问题的方法?我不想从第一天起就失去保修

答案1

现在我被卡在这个屏幕上(什么屏幕??)

通常情况下,如果您不使用 USB 启动盘重新启动,则没有理由无法访问 BIOS/Setup(F12F8F2Del等等)。进入 BIOS/Setup 后,您可以从传统启动更改为 Windows 所需的 UEFI 启动。

或者我不明白……

附言:抱歉,harrymc,我没有看到你的答案。

答案2

我遇到了同样的问题。启动时没有显示 BIOS 屏幕,而是直接进入 GRUB。键盘无法识别。对于所有遇到同样问题的人,我可以通过以下方式重新进入 BIOS拔下启动驱动器从主板。

尽管这只起到了作用,因为我没有需要关心的保修。

答案3

这很有帮助摘抄:

At the grub prompt try these commands:

set pager=1
ls

Now, suppose the output of ls is: (hd0) (hd0,msdos2) (hd0,msdos1), in order to find the linux root filesystem run:

ls (hd0,1)/ which should give you all the files/folders in / such as bin/ boot/ cdrom/ dev/ etc/ home/  lib/ etc.

Once this is done continue with:

set root=(hd0,1)
linux /boot/vmlinuz-3.13.0-29-generic root=/dev/sda1
initrd /boot/initrd.img-3.13.0-29-generic
boot

Of course replace vmlinuz-3.13.0-29-generic and initrd.img-3.13.0-29-generic with what you find in your /boot

/dev/sda1 is the location of the root system. You may have to change it if /dev/sda1 did not work.

或者:

Run those commands

grub> linux  (hd0,1)/vmlinuz root=/dev/sda1
grub> initrd  (hd0,1)/initrd.img
grub> boot

Replace hd0 with your hdd number and /dev/sda1 with your partition holding the /boot mainly the dafult will work if you don't have more than one hdd and with default installtion

 When you can boot again you shoulf fix your problem

 sudo update-grub

这是另一个 =>修复-grub2-当-ubuntu-无法启动/

这里 =>在 Ubuntu 中修复并重新安装 grub 引导加载程序 /

相关内容